.services-hero {
       background: linear-gradient(135deg, rgba(0, 170, 193, 0.9), rgba(46, 46, 56, 0.8)), url('../images/about-us-banner.jpg') no-repeat center center / cover;
      height: 60vh;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
    }

    .service-detail-section {
      padding: 100px 0;
      background: white;
    }

    .service-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
    }

    .service-detail-grid:nth-child(even) {
      direction: rtl;
    }

    .service-detail-grid:nth-child(even) > * {
      direction: ltr;
    }

    .service-detail-content h3 {
      font-size: 2.2rem;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .service-detail-content p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 25px;
      font-size: 1.1rem;
    }

    .service-features-list {
      list-style: none;
      margin: 25px 0;
    }

    .service-features-list li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 1rem;
      color: var(--text-color);
    }

    .service-features-list li i {
      color: var(--secondary-color);
      margin-right: 15px;
      font-size: 1.2rem;
    }

    .service-detail-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .service-detail-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .service-detail-image:hover img {
      transform: scale(1.05);
    }

    .pricing-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .pricing-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .pricing-card.featured {
      transform: scale(1.05);
      border: 3px solid var(--secondary-color);
    }

    .pricing-card.featured::before {
      content: "Most Popular";
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--secondary-color);
      color: white;
      padding: 5px 40px;
      font-size: 0.9rem;
      font-weight: 600;
      transform: rotate(45deg);
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.featured:hover {
      transform: scale(1.05) translateY(-10px);
    }

    .pricing-header h4 {
      font-size: 1.5rem;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .pricing-price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--secondary-color);
      margin-bottom: 5px;
    }

    .pricing-period {
      color: var(--text-light);
      margin-bottom: 30px;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 30px;
    }

    .pricing-features li {
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      color: var(--text-color);
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    .pricing-features li i {
      color: var(--secondary-color);
      margin-right: 10px;
    }

    .process-section {
      padding: 80px 0;
      background: var(--primary-color);
      color: white;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .process-step {
      text-align: center;
      position: relative;
    }

    .process-step::after {
      content: "";
      position: absolute;
      top: 40px;
      right: -20px;
      width: 40px;
      height: 2px;
      background: var(--accent-color);
      display: none;
    }

    .process-step:not(:last-child)::after {
      display: block;
    }

    .process-number {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--accent-color);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .process-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .process-description {
      opacity: 0.9;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .services-hero {
        height: 50vh;
      }
      
      .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .service-detail-grid:nth-child(even) {
        direction: ltr;
      }
      
      .pricing-card.featured {
        transform: none;
      }
      
      .pricing-card.featured:hover {
        transform: translateY(-10px);
      }
      
      .process-step::after {
        display: none;
      }
    }