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

body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 18px;
        line-height: 1.7;
        color: #1a1a1a;
        background: #fff;
        padding-bottom: 70px;
      }

@media (min-width: 769px) {
body {
          padding-bottom: 0;
        }
}

.container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
      }

/* Advertorial Disclosure */
      .advertorial-label {
        background: #f1f5f9;
        padding: 10px 20px;
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        color: #334155;
        text-transform: uppercase;
        letter-spacing: 2px;
        border-bottom: 1px solid #cbd5e1;
      }

/* Header */
      .header {
        padding: 15px 0;
      }

.logo {
        height: 56px;
        width: auto;
      }

.header-line {
        height: 2px;
        background: #1a1a1a;
        margin-top: 12px;
      }

@keyframes pulse {

        0%,
        100% {
          opacity: 1;
        }

        50% {
          opacity: 0.5;
        }
      }

/* Hero Section */
      .hero {
        padding: 20px 0;
        text-align: center;
      }

.headline {
        font-size: 34px;
        font-weight: 700;
        color: #182433;
        line-height: 1.2;
        margin-bottom: 10px;
      }

@media (max-width: 600px) {
.headline {
          font-size: 26px;
        }
}

.subhead {
        font-size: 18px;
        color: #555;
        margin-bottom: 15px;
        font-weight: 400;
      }

/* Body Content */
      .content {
        font-size: 17px;
        line-height: 1.7;
        color: #1a1a1a;
      }

.content p {
        margin-bottom: 16px;
      }

.content strong {
        color: #182433;
      }

/* Eligibility */
      .eligibility {
        margin: 25px 0;
        background: #f8f9fa;
        border-radius: 8px;
        padding: 20px;
      }

.eligibility h3 {
        font-size: 17px;
        font-weight: 600;
        color: #182433;
        margin-bottom: 12px;
      }

.eligibility-list {
        list-style: none;
      }

.eligibility-list li {
        padding: 6px 0;
        padding-left: 28px;
        position: relative;
        font-size: 15px;
        color: #444;
      }

.eligibility-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 6px;
        color: #0d9488;
        font-weight: 700;
        font-size: 16px;
      }

/* Callout Box */
      .callout-box {
        background: #fff5e2;
        border-left: 4px solid #d0021b;
        padding: 15px 20px;
        margin: 25px 0;
      }

.callout-box p {
        font-size: 15px;
        color: #1a1a1a;
        margin: 0;
        line-height: 1.6;
      }

.callout-box a {
        color: #0d7377;
        text-decoration: underline;
      }

.urgency-cta .cta-button {
        background: white;
        color: #dc2626;
      }

.urgency-cta .cta-button:hover {
        background: #fef2f2;
      }

/* State Selector */
      .state-selector {
        margin: 30px 0;
      }

.state-selector h2 {
        font-size: 24px;
        font-weight: 700;
        color: #182433;
        margin-bottom: 15px;
        line-height: 1.3;
        text-align: center;
      }

.state-selector .steps {
        margin-bottom: 20px;
        text-align: center;
      }

.state-selector .steps p {
        margin-bottom: 6px;
        font-size: 16px;
        color: #444;
      }

.state-label {
        font-size: 18px;
        font-weight: 600;
        margin: 20px 0 15px;
        color: #182433;
        text-align: center;
      }

.state-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
        margin-bottom: 25px;
      }

@media (max-width: 700px) {
.state-grid {
          grid-template-columns: repeat(4, 1fr);
        }
}

@media (max-width: 480px) {
.state-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 6px;
        }
}

.state-btn {
        background: white;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px 5px 8px;
        font-size: 15px;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
        transition: all 0.15s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        color: #1a1a1a;
      }

.state-btn:hover {
        background: #eff6ff;
        border-color: #1B68E9;
        transform: translateY(-1px);
      }

.state-btn .flag {
        width: 24px;
        height: 18px;
        object-fit: cover;
        border-radius: 2px;
      }

.cta-button {
        display: block;
        width: 100%;
        background: #1B68E9;
        color: white;
        border: none;
        border-radius: 6px;
        padding: 16px 30px;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: center;
        text-decoration: none;
        font-family: inherit;
      }

.cta-button:hover {
        background: #1557c7;
      }

.cta-subtext {
        text-align: center;
        margin-top: 10px;
        font-size: 13px;
        color: #666;
      }

.cta-subtext span {
        margin: 0 6px;
      }

/* Final CTA */
      .final-cta {
        background: #eff6ff;
        border-radius: 12px;
        padding: 25px 20px;
        margin: 30px 0 40px;
        text-align: center;
      }

.final-cta h3 {
        font-size: 20px;
        color: #182433;
        margin-bottom: 8px;
        font-weight: 700;
      }

.final-cta p {
        font-size: 15px;
        color: #555;
        margin-bottom: 15px;
      }

.footer-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 8px;
      }

.footer-links a {
        font-size: 12px;
        color: #888;
        text-decoration: none;
      }

.footer-links a:hover {
        color: #555;
        text-decoration: underline;
      }

.footer-copy {
        font-size: 11px;
        color: #aaa;
      }

.sticky-cta .cta-button {
        padding: 14px 20px;
        font-size: 14px;
      }

/* Captured layout overrides retained from the source page. */
.logo-link {
  display: block;
  width: 62%;
  min-width: 320px;
  max-width: 560px;
  margin: 2px auto 0;
}

#igbx {
  display: block;
  width: 100%;
  height: auto;
}

#igfyfg { width: 100%; text-align: left; margin-top: 0; }
#ixgpv { margin-bottom: 0; padding-bottom: 0; }
#ixr9f { font-size: 46px; }
#iu1vpd { margin-bottom: 20px; border-radius: 8px; object-fit: cover; }
#ipelg6 { margin-top: 0; }
#it673d, #ir46ij, #i64vbh, #ihasyl { text-align: left; }
#i71cy3 { font-size: 24px; font-weight: 700; }
#ichvj6 { font-size: 15px; font-weight: 600; }

.site-footer {
  margin-top: 30px;
  padding: 30px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #8b8b9e;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a { color: #8b8b9e; font-size: 0.8rem; text-decoration: none; }
.footer-links a:hover { color: #2659dc; }
.footer-copy { font-size: 0.75rem; }

img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.ll-image {
  width: 100%;
}

.state-grid,
.state-btn {
  min-width: 0;
}

@media (max-width: 992px) {
  #ixr9f { font-size: 44px; }
}

@media (max-width: 576px) {
  #ixr9f { font-size: 26.5px; }
  #id1ra { font-size: 17px; }
  .logo-link { width: 92%; min-width: 280px; max-width: 480px; }
  #iw6z { padding: 0; }
  #ipelg6 { padding-left: 20px; }
}

/* Shared legal-page layout. */
.legal-page { min-height: 100vh; display: flex; flex-direction: column; padding-bottom: 0; }
.legal-main { width: 100%; max-width: 800px; margin: 0 auto; padding: 35px 20px 60px; flex: 1; overflow-wrap: anywhere; word-break: break-word; }
.legal-main h1 { color: #182433; font-size: 36px; line-height: 1.2; margin-bottom: 24px; }
.legal-main h2 { color: #182433; font-size: 24px; margin: 28px 0 12px; }
.legal-main p { margin-bottom: 16px; }
.legal-main a { color: #2659dc; }
