  .service-head {
      /* background: #0f0f0f; */
      color: #fff;
      padding: 165px 20px 37px 20px;
  }

  .hero-title {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .hero-text {
      font-size: 18px;
      color: #ccc;
      margin-bottom: 30px;
  }

  .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
  }

  .btn {
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: 0.3s;
  }

  .seo-service-section {
      color: #fff;
      padding: 80px 20px;
      border-radius: 0px !important;
  }

  .service-sub-title {
      font-size: 14px;
      text-transform: uppercase;
      color: #9d84ff;
      /* purple */
      font-weight: 600;
  }

  .section-title {
      font-size: 36px;
      font-weight: 700;
      margin: 15px 0;
  }

  .section-text {
      color: #bbb;
      font-size: 16px;
      line-height: 1.7;
  }

  .section-text .highlight {
      color: #fff;
      font-weight: 600;
  }

  .card-box {
      background: #1a1a1a;
      padding: 25px;
      border-radius: 12px;
      flex: 1;
  }

  .card-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
  }

  .card-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
  }

  .card-list li {
      margin-bottom: 10px;
      font-size: 15px;
      color: #ccc;
  }

  .card-list i {
      color: #8d5cff;
      /* purple check */
      margin-right: 8px;
  }

  @media (max-width: 768px) {
      .hero-buttons {
          display: grid;
          grid-template-columns: 1fr;
          gap: 0.75rem;
      }
  }

  .email-cta-section {
      color: #ffffff;
      padding: 60px 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .email-cta-section .cta-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .email-cta-section .cta-text {
      font-size: 1.125rem;
      margin-bottom: 30px;
      line-height: 1.6;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
  }

  .email-cta-section .cta-btn {
      display: inline-block;
      background-color: #ffffff;
      color: #4a90e2;
      font-weight: 600;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .email-cta-section .cta-btn i {
      margin-left: 8px;
      transition: transform 0.3s ease;
  }

  .email-cta-section .cta-btn:hover {
      background-color: #f1f1f1;
      color: #50e3c2;
  }

  .email-cta-section .cta-btn:hover i {
      transform: translateX(5px);
  }

  @media (max-width: 768px) {
      .email-cta-section .cta-title {
          font-size: 1.75rem;
      }

      .email-cta-section .cta-text {
          font-size: 1rem;
      }
  }