*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --background: 30 50% 98%;
      --foreground: 200 25% 20%;
      --card: 0 0% 100%;
      --card-foreground: 200 25% 20%;
      --primary: 12 76% 61%;
      --primary-foreground: 0 0% 100%;
      --secondary: 174 42% 41%;
      --secondary-foreground: 0 0% 100%;
      --muted: 30 30% 94%;
      --muted-foreground: 200 15% 45%;
      --accent: 174 35% 92%;
      --accent-foreground: 174 42% 30%;
      --border: 30 20% 88%;
      --coral: 12 76% 61%;
      --coral-light: 12 76% 92%;
      --coral-dark: 12 60% 45%;
      --teal: 174 42% 41%;
      --teal-light: 174 35% 92%;
      --teal-dark: 174 45% 28%;
      --cream: 30 50% 98%;
      --warm-gray: 30 10% 55%;
      --radius: 0.75rem;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      line-height: 1.2;
    }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; }

    @keyframes fade-in {
      0% { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .animate-fade-in { animation: fade-in 0.5s ease-out forwards; }

    .shadow-soft { box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08); }
    .shadow-medium { box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12); }
    .shadow-coral { box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25); }
    .shadow-teal { box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25); }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      padding: 0.75rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
      cursor: pointer; border: none; transition: all 0.2s ease; font-family: inherit;
    }
    .btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
    .btn-primary {
      background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground));
      box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
    }
    .btn-primary:hover { background-color: hsl(var(--coral-dark)); transform: translateY(-2px); }
    .btn-secondary {
      background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
      box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
    }
    .btn-secondary:hover { background-color: hsl(var(--teal-dark)); transform: translateY(-2px); }
    .btn-outline-light {
      background-color: transparent; border: 2px solid hsl(var(--primary-foreground));
      color: hsl(var(--primary-foreground));
    }
    .btn-outline-light:hover { background-color: hsla(0, 0%, 100%, 0.1); }
    .btn-outline-dark {
      background-color: transparent; border: 2px solid hsl(var(--secondary-foreground));
      color: hsl(var(--secondary-foreground));
    }
    .btn-outline-dark:hover { background-color: hsla(0, 0%, 100%, 0.1); }

    /* Header */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      background-color: hsla(30, 50%, 98%, 0.95); backdrop-filter: blur(12px);
      border-bottom: 1px solid hsl(var(--border));
    }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
    .logo img { height: 3.5rem; width: auto; }
    .nav-desktop { display: none; align-items: center; gap: 2rem; }
    @media (min-width: 1024px) { .nav-desktop { display: flex; } }
    .nav-link {
      color: hsla(200, 25%, 20%, 0.8); font-weight: 500; transition: color 0.2s;
      background: none; border: none; cursor: pointer; font-size: 1rem;
    }
    .nav-link:hover { color: hsl(var(--primary)); }
    .header-cta { display: none; align-items: center; gap: 1rem; }
    @media (min-width: 1024px) { .header-cta { display: flex; } }
    .phone-link { display: flex; align-items: center; gap: 0.5rem; color: hsl(var(--secondary)); font-weight: 600; }
    .mobile-menu-btn { display: block; padding: 0.5rem; background: none; border: none; cursor: pointer; color: hsl(var(--foreground)); }
    @media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
    .mobile-nav { display: none; padding: 1.5rem 0; border-top: 1px solid hsl(var(--border)); animation: fade-in 0.3s ease-out; }
    .mobile-nav.active { display: block; }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 1rem; }
    .mobile-nav-links .nav-link { padding: 0.5rem 0; text-align: left; }
    .mobile-nav-cta { padding-top: 1rem; margin-top: 1rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 0.75rem; }

    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown-trigger { display: flex; align-items: center; gap: 0.25rem; font-family: inherit; }
    .nav-dropdown-content {
      display: none; position: absolute; top: 100%; left: 0; margin-top: 0.5rem;
      background-color: hsl(var(--background)); border: 1px solid hsl(var(--border));
      border-radius: var(--radius); min-width: 10rem; z-index: 60;
      box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
    }
    .nav-dropdown-content.active { display: block; }
    .nav-dropdown-item {
      display: block; padding: 0.5rem 1rem; color: hsl(var(--foreground));
      font-weight: 500; font-size: 0.875rem; transition: background-color 0.2s;
    }
    .nav-dropdown-item:hover { background-color: hsl(var(--muted)); }
    .mobile-services-toggle { display: flex; align-items: center; gap: 0.25rem; width: 100%; font-family: inherit; }
    .mobile-services-sub { display: flex; flex-direction: column; gap: 0.5rem; }

    /* Hero */
    .hero { position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, hsla(200, 25%, 20%, 0.9), hsla(200, 25%, 20%, 0.7), hsla(200, 25%, 20%, 0.4)); }
    .hero-content { position: relative; z-index: 10; padding: 8rem 0; max-width: 42rem; }
    .badge { display: inline-block; padding: 0.25rem 1rem; border-radius: 9999px; font-weight: 500; font-size: 0.875rem; margin-bottom: 1.5rem; }
    .badge-secondary-light { background-color: hsla(174, 42%, 41%, 0.2); color: hsl(var(--secondary-foreground)); }
    .badge-coral { background-color: hsl(var(--coral-light)); color: hsl(var(--primary)); }
    .badge-teal { background-color: hsl(var(--teal-light)); color: hsl(var(--secondary)); }
    .hero h1 { font-size: 2.5rem; font-weight: 700; color: hsl(var(--cream)); margin-bottom: 1.5rem; }
    @media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
    @media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
    .text-primary { color: hsl(var(--primary)); }
    .text-secondary { color: hsl(var(--secondary)); }
    .hero p { font-size: 1.25rem; color: hsla(30, 50%, 98%, 0.9); margin-bottom: 2rem; }
    .hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
    @media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

    /* Sections */
    .section { padding: 6rem 0; }
    .section-bg { background-color: hsl(var(--background)); }
    .section-muted { background-color: hsla(30, 30%, 94%, 0.3); }
    .section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
    .section-title { font-size: 1.875rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1.5rem; }
    @media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
    .section-desc { font-size: 1.125rem; color: hsl(var(--muted-foreground)); }

    /* Update Banner */
    .update-banner { background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); padding: 2.5rem 0; }
    .update-banner-grid { display: grid; gap: 2rem; align-items: center; max-width: 64rem; margin: 0 auto; }
    @media (min-width: 768px) { .update-banner-grid { grid-template-columns: auto 1fr; } }
    .update-banner h2 { font-size: 1.5rem; font-weight: 700; }
    @media (min-width: 640px) { .update-banner h2 { font-size: 1.875rem; } }
    .update-banner p { color: hsla(0, 0%, 100%, 0.9); font-size: 1.125rem; }
    .update-banner a {
      display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
      font-weight: 500; color: hsl(var(--secondary-foreground));
      text-decoration: underline; text-underline-offset: 4px;
    }
    .update-banner a:hover { opacity: 0.8; }

    /* About Grid */
    .about-grid { display: grid; gap: 4rem; align-items: center; max-width: 72rem; margin: 0 auto; }
    @media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
    .about-text p { color: hsl(var(--muted-foreground)); line-height: 1.8; margin-bottom: 1.5rem; }
    .about-badges { display: flex; flex-wrap: wrap; gap: 1rem; padding-top: 1rem; }
    .about-badge {
      display: flex; align-items: center; gap: 0.5rem;
      background-color: hsl(var(--teal-light)); border-radius: 9999px;
      padding: 0.5rem 1rem;
    }
    .about-badge svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--secondary)); }
    .about-badge span { font-size: 0.875rem; font-weight: 500; color: hsl(var(--foreground)); }
    .about-img { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12); }
    .about-img img { width: 100%; height: auto; display: block; }
    .about-floating {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      background-color: hsl(var(--secondary)); color: white;
      border-radius: 1rem; padding: 1rem 1.5rem;
      box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
    }
    .about-floating p:first-child { font-weight: 600; }
    .about-floating p:last-child { font-size: 0.875rem; opacity: 0.9; }

    /* Accordion */
    .accordion { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
    .accordion-item {
      background-color: hsl(var(--card)); border-radius: 1rem; padding: 0 1.5rem;
      box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
    }
    .accordion-trigger {
      display: flex; align-items: center; justify-content: space-between; width: 100%;
      padding: 1.5rem 0; background: none; border: none; cursor: pointer; text-align: left;
      font-family: 'Playfair Display', Georgia, serif; font-size: 1.125rem; font-weight: 600;
      color: hsl(var(--foreground)); transition: color 0.2s;
    }
    .accordion-trigger:hover { color: hsl(var(--primary)); }
    .accordion-trigger svg { transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
    .accordion-trigger.active svg { transform: rotate(180deg); }
    .accordion-content {
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
      color: hsl(var(--muted-foreground)); line-height: 1.8;
    }
    .accordion-content.active { max-height: 300px; padding-bottom: 1.5rem; }

    /* Services Grid */
    .services-grid { display: grid; gap: 2rem; max-width: 72rem; margin: 0 auto; }
    @media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
    .service-card {
      background-color: hsl(var(--card)); border-radius: 1rem; padding: 1.5rem;
      box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
      transition: all 0.3s;
    }
    .service-card:hover { box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12); transform: translateY(-4px); }
    .service-icon {
      width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
      display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
      background-color: hsla(174, 42%, 41%, 0.1); color: hsl(var(--secondary));
    }
    .service-icon svg { width: 1.75rem; height: 1.75rem; }
    .service-card h3 { font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.75rem; }
    .service-card p { color: hsl(var(--muted-foreground)); line-height: 1.7; }

    /* Eligibility */
    .eligibility-card {
      max-width: 56rem; margin: 0 auto;
      background-color: hsl(var(--card)); border-radius: 1.5rem;
      padding: 2rem; box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
    }
    @media (min-width: 768px) { .eligibility-card { padding: 3rem; } }
    .eligibility-grid { display: grid; gap: 2rem; }
    @media (min-width: 768px) { .eligibility-grid { grid-template-columns: 1fr 1fr; } }
    .eligibility-card h3 { font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1rem; }
    .check-list { display: flex; flex-direction: column; gap: 0.75rem; }
    .check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
    .check-item svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.125rem; }
    .check-item span { color: hsl(var(--foreground)); }

    /* Steps */
    .steps-grid { display: grid; gap: 2rem; max-width: 72rem; margin: 0 auto; }
    @media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
    .step-card { position: relative; }
    .step-card-inner {
      background-color: hsl(var(--card)); border-radius: 1rem; padding: 1.5rem;
      box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08); height: 100%;
    }
    .step-number { font-family: 'Playfair Display', Georgia, serif; font-size: 2.25rem; font-weight: 700; color: hsla(174, 42%, 41%, 0.2); }
    .step-card-inner h3 { font-size: 1.125rem; font-weight: 700; color: hsl(var(--foreground)); margin-top: 0.5rem; margin-bottom: 0.75rem; }
    .step-card-inner p { color: hsl(var(--muted-foreground)); font-size: 0.875rem; line-height: 1.7; }
    .step-arrow {
      display: none; position: absolute; top: 50%; right: -1rem; transform: translateY(-50%);
      color: hsla(174, 42%, 41%, 0.4);
    }
    @media (min-width: 1024px) { .step-arrow { display: block; } }

    /* CTA */
    .cta-section {
      padding: 6rem 0; text-align: center;
      background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--teal)));
    }
    .cta-section svg.cta-icon { width: 4rem; height: 4rem; color: hsla(0, 0%, 100%, 0.8); margin: 0 auto 1.5rem; }
    .cta-section h2 { font-size: 1.875rem; font-weight: 700; color: hsl(var(--secondary-foreground)); margin-bottom: 1.5rem; }
    @media (min-width: 640px) { .cta-section h2 { font-size: 2.25rem; } }
    .cta-section > .container > p { font-size: 1.25rem; color: hsla(0, 0%, 100%, 0.9); margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
    .cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
    @media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

    /* Footer */
    .footer { background-color: hsl(var(--foreground)); color: hsl(var(--background)); padding: 4rem 0 2rem; }
    .footer-grid { display: grid; gap: 2rem; margin-bottom: 3rem; }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
    .footer-brand img { height: 2.5rem; margin-bottom: 1rem; }
    .footer-brand p { color: hsla(30, 50%, 98%, 0.7); margin-bottom: 0.5rem; }
    .footer-tagline { font-style: italic; color: hsl(var(--primary)); }
    .footer h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; font-family: 'Source Sans 3', sans-serif; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a { color: hsla(30, 50%, 98%, 0.7); transition: color 0.2s; }
    .footer-links a:hover { color: hsl(var(--background)); }
    .footer-contact a { display: flex; align-items: center; gap: 0.5rem; color: hsla(30, 50%, 98%, 0.7); margin-bottom: 0.75rem; transition: color 0.2s; }
    .footer-contact a:hover { color: hsl(var(--background)); }
    .footer-bottom { border-top: 1px solid hsla(30, 50%, 98%, 0.1); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
    @media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
    .footer-bottom p { color: hsla(30, 50%, 98%, 0.7); font-size: 0.875rem; }
    .made-with { display: flex; align-items: center; gap: 0.25rem; }
    .heart-icon { color: hsl(var(--primary)); }

    /* Scroll to Top */
    .scroll-to-top {
      position: fixed; bottom: 2rem; right: 2rem;
      width: 3rem; height: 3rem; border-radius: 50%;
      background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: all 0.3s ease;
      box-shadow: 0 4px 20px -4px hsla(174, 42%, 41%, 0.3); z-index: 40;
    }
    .scroll-to-top.visible { opacity: 1; visibility: visible; }
    .scroll-to-top:hover { transform: translateY(-4px); }