    :root {
      --primary: #3a86ff;
      --secondary: #8338ec;
      --accent: #ff006e;
      --light: #f8f9fa;
      --dark: #212529;
      --success: #38b000;
      --warning: #ff9e00;
      --danger: #ef233c;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: #f5f7fa;
      color: var(--dark);
      line-height: 1.6;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    header {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 1rem 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .logo img {
      width: 100%;
      height: auto;
      max-width: 50px;
      object-fit: contain;
    }

    .logo img {
      width: 40px;
      height: auto;
      object-fit: contain;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 5px 10px;
      border-radius: 5px;
    }

    nav a:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .cta-button {
      padding: 10px 25px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      background-color: white;
      color: var(--primary);
      font-size: 1rem;
    }

    .cta-button:hover {
      background-color: var(--light);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero {
      background: linear-gradient(rgba(58, 134, 255, 0.9), rgba(131, 56, 236, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 5rem 0;
      text-align: center;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 2rem;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 2rem;
    }

    .section {
      padding: 5rem 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .section-title p {
      color: #666;
      max-width: 700px;
      margin: 0 auto;
    }

    .services-container {
      position: relative;
      overflow: hidden;
      padding: 20px 0;
    }

    .services-scroll {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 10px 0;
      scrollbar-width: none;
    }

    .services-scroll::-webkit-scrollbar {
      display: none;
    }

    .service-card {
      min-width: 280px;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .service-img {
      height: 180px;
      background-color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 3rem;
    }

    .service-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .service-content h3 {
      margin-bottom: 10px;
      color: var(--dark);
    }

    .service-content p {
      color: #666;
      margin-bottom: 15px;
      font-size: 0.9rem;
      flex-grow: 1;
    }

    .service-price {
      font-weight: 700;
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

    .service-button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
      text-decoration: none;
    }

    .service-button:hover {
      background: var(--secondary);
      transform: translateY(-2px);
    }

    .scroll-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }

    .scroll-btn {
      background-color: var(--primary);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .scroll-btn:hover {
      background-color: var(--secondary);
    }

    .how-it-works {
      background-color: var(--light);
    }

    .steps {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .step {
      flex: 1;
      min-width: 250px;
      text-align: center;
      padding: 30px 20px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .step-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 2rem;
    }

    .step h3 {
      margin-bottom: 15px;
      color: var(--dark);
    }

    /* CTA Section */
    .cta {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      text-align: center;
      padding: 4rem 0;
    }

    .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .cta p {
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 1.1rem;
    }

    /* Footer */
    footer {
      background-color: var(--dark);
      color: white;
      padding: 3rem 0 1rem;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 2rem;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
    }

    .footer-column h3 {
      margin-bottom: 20px;
      font-size: 1.2rem;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary);
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column a {
      color: #ccc;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-column a:hover {
      color: white;
      padding-left: 5px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .provider-cta {
      margin-top: 20px;
      text-align: center;
    }

    .copyright {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #444;
      color: #aaa;
      font-size: 0.9rem;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-content {
      background-color: white;
      border-radius: 10px;
      width: 100%;
      max-width: 500px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      position: relative;
      text-align: center;
    }

    .close-modal {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 1.5rem;
      cursor: pointer;
      color: #999;
    }

    .close-modal:hover {
      color: var(--dark);
    }

    .modal h2 {
      margin-bottom: 20px;
      color: var(--primary);
    }

    .modal-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .modal-buttons {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 25px;
    }

    .modal-button {
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      text-decoration: none;
      display: inline-block;
    }

    .modal-button-primary {
      background-color: var(--primary);
      color: white;
    }

    .modal-button-primary:hover {
      background-color: var(--secondary);
    }

    .modal-button-outline {
      background-color: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .modal-button-outline:hover {
      background-color: rgba(58, 134, 255, 0.1);
    }

    @media (max-width: 768px) {
      .header-content {
        flex-direction: column;
        gap: 15px;
      }

      nav ul {
        flex-wrap: wrap;
        justify-content: center;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .steps {
        flex-direction: column;
      }

      .footer-content {
        flex-direction: column;
      }

      .modal-buttons {
        flex-direction: column;
      }
    }

    .about-content {
      max-width: 1000px;
      margin: 0 auto;
    }

    .about-text h3 {
      color: var(--primary);
      margin: 2rem 0 1rem;
      font-size: 1.5rem;
    }

    .about-text p {
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .mission-statement {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--secondary);
      text-align: center;
      padding: 1.5rem;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      border-radius: 10px;
      border-left: 4px solid var(--primary);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }

    .feature-item {
      text-align: center;
      padding: 2rem 1rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .feature-item:hover {
      transform: translateY(-5px);
    }

    .feature-item i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .feature-item h4 {
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .feature-item p {
      color: #666;
      font-size: 0.9rem;
    }

    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
      text-align: center;
    }

    .stat-item {
      padding: 1.5rem;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: #666;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .terms-content {
      max-height: 60vh;
      overflow-y: auto;
      padding-right: 10px;
      margin: 20px 0;
    }

    .terms-tabs {
      display: flex;
      border-bottom: 2px solid #eee;
      margin-bottom: 20px;
    }

    .terms-tab {
      padding: 12px 20px;
      background: none;
      border: none;
      cursor: pointer;
      font-weight: 600;
      color: #666;
      border-bottom: 3px solid transparent;
      transition: all 0.3s ease;
    }

    .terms-tab.active {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }

    .terms-tab:hover {
      color: var(--secondary);
    }

    .terms-tab-content {
      display: none;
    }

    .terms-tab-content.active {
      display: block;
    }

    .terms-tab-content h3 {
      color: var(--primary);
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #eee;
    }

    .terms-tab-content h4 {
      color: var(--dark);
      margin: 1.5rem 0 1rem;
      font-size: 1.1rem;
    }

    .terms-tab-content ul {
      margin-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .terms-tab-content li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .terms-tab-content strong {
      color: var(--primary);
    }

    .terms-content::-webkit-scrollbar {
      width: 6px;
    }

    .terms-content::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    .terms-content::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }

    .terms-content::-webkit-scrollbar-thumb:hover {
      background: var(--secondary);
    }

    @media (max-width: 768px) {
      .features-grid {
        grid-template-columns: 1fr;
      }

      .stats-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .terms-tabs {
        flex-direction: column;
      }

      .terms-tab {
        text-align: left;
        border-bottom: 1px solid #eee;
        border-left: 3px solid transparent;
      }

      .terms-tab.active {
        border-left-color: var(--primary);
        border-bottom-color: #eee;
      }

      .mission-statement {
        font-size: 1.1rem;
        padding: 1rem;
      }
    }
