:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0a92719 */@import url('https://fonts.googleapis.com');
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;600&display=swap');
 :root {
    --navy: #1a3a5c;
    --navy-dark: #112540;
    --sky: #2e86c1;
    --sky-light: #e8f4fc;
    --teal: #1a8f7b;
    --teal-light: #e4f5f1;
    --orange: #e87722;
    --orange-light: #fff3e8;
    --gold: #f5a623;
    --white: #ffffff;
    --off-white: #f7fafd;
    --gray-light: #eef2f7;
    --gray-mid: #8a9ab5;
    --text-dark: #1a2b3c;
    --text-mid: #4a5d72;
  }

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

  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
  }

  h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
  }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--navy-dark);
    color: #c8dbee;
    font-size: 13px;
    text-align: center;
    padding: 8px 20px;
    letter-spacing: 0.3px;
  }

  .topbar a { color: var(--gold); text-decoration: none; font-weight: 600; }

  /* ── NAV / HEADER ── */
  header {
    background: var(--white);
    border-bottom: 3px solid var(--sky);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(30,60,100,0.08);
  }

  .logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-icon {
    width: 48px;
    height: 48px;
  }

  .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -0.5px;
  }

  .logo-text span { color: var(--sky); }

  .header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
  }

  .phone-badge {
    background: var(--orange);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s;
  }

  .phone-badge:hover { background: #c9641a; }

  .phone-sub {
    font-size: 11px;
    color: var(--gray-mid);
    text-align: right;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1e4f7a 100%);
    color: white;
    padding: 64px 24px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='%23ffffff06' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='18' fill='none' stroke='%23ffffff04' stroke-width='1'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
  }

  .hero-content { position: relative; max-width: 780px; margin: 0 auto; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,119,34,0.18);
    border: 1px solid var(--orange);
    color: #f4b97a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-sub {
    font-size: clamp(15px, 2vw, 19px);
    color: #aac8e0;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-medicare {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26,143,123,0.22);
    border: 1.5px solid var(--teal);
    color: #7fddd1;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 32px;
  }


  .hero-medicare svg { width: 20px; height: 20px; flex-shrink: 0; }

  .cta-btn {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    padding: 18px 44px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(232,119,34,0.45);
    transition: all 0.2s;
    text-align: center;
  }

  .cta-btn:hover {
    background: #c9641a;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(232,119,34,0.5);
  }

  .hero-trust {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #8aaccc;
  }

  .hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .hero-trust svg { width: 16px; height: 16px; }

  /* ── INSURANCE STRIP ── */
  .insurance-strip {
    background: var(--teal);
    color: white;
    text-align: center;
    padding: 20px 24px;
  }

  .insurance-strip p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2.5vw, 18px);
    letter-spacing: 0.2px;
  }

  .insurance-strip span {
    background: rgba(255,255,255,0.18);
    border-radius: 4px;
    padding: 2px 10px;
    margin: 0 4px;
  }

  /* ── SECTIONS ── */
  .section { padding: 60px 24px; }
  .section-alt { background: var(--off-white); }

  .container { max-width: 1080px; margin: 0 auto; }

  .section-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sky);
    margin-bottom: 10px;
  }

  .section-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
  }

  .section-desc {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 580px;
  }

  .section-head { margin-bottom: 44px; }

  /* ── WHO WE HELP CARDS ── */
  .who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .who-card {
    background: white;
    border-radius: 12px;
    padding: 28px 24px;
    border-top: 5px solid var(--sky);
    box-shadow: 0 4px 20px rgba(30,60,100,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(30,60,100,0.12);
  }

  .who-card.veterans { border-top-color: var(--navy); }
  .who-card.medicaid { border-top-color: var(--teal); }
  .who-card.noinsurance { border-top-color: var(--orange); }

  .who-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
  }

  .who-icon.vet { background: #e6edf5; }
  .who-icon.med { background: var(--teal-light); }
  .who-icon.none { background: var(--orange-light); }

  .who-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--navy);
  }

  .who-card p { font-size: 14px; color: var(--text-mid); margin-bottom: 12px; }

  .free-badge {
    display: inline-block;
    background: var(--navy);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
  }

  .accepted-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(26,143,123,0.25);
  }

  .options-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(232,119,34,0.25);
  }

  /* ── WHY CHOOSE ── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .why-card {
    background: white;
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
    border: 1.5px solid var(--gray-light);
  }

  .why-card svg {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .why-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .why-card p { font-size: 13px; color: var(--text-mid); }

  /* ── NVLB BANNER ── */
  .nvlb-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #1e5c8a 100%);
    color: white;
    border-radius: 14px;
    padding: 40px 36px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .nvlb-icon {
    font-size: 56px;
    flex-shrink: 0;
  }

  .nvlb-text { flex: 1; min-width: 220px; }

  .nvlb-text .tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
  }

  .nvlb-text h3 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 800;
    margin-bottom: 8px;
  }

  .nvlb-text p { font-size: 15px; color: #aac8e0; }

  .nvlb-cta {
    background: white;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .nvlb-cta:hover { background: var(--gold); color: var(--navy-dark); }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: white;
    border-radius: 10px;
    border: 1.5px solid var(--gray-light);
  }

  .service-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sky);
    margin-top: 6px;
    flex-shrink: 0;
  }

  .service-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
  }

  .service-item p { font-size: 13px; color: var(--text-mid); }

  /* ── TESTIMONIAL / SOCIAL PROOF ── */
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 36px;
  }

  .proof-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1.5px solid var(--gray-light);
    position: relative;
  }

  .stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }

  .proof-card p { font-size: 14px; color: var(--text-mid); margin-bottom: 14px; font-style: italic; }
  .proof-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--navy); }
  .proof-tag { font-size: 12px; color: var(--sky); }

  /* ── CTA BOTTOM ── */
  .cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, #c9641a 100%);
    color: white;
    text-align: center;
    padding: 64px 24px;
  }

  .cta-section h2 {
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 12px;
  }

  .cta-section p { font-size: 17px; opacity: 0.9; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

  .cta-white {
    display: inline-block;
    background: white;
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    transition: all 0.2s;
  }

  .cta-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }

  .cta-sub {
    margin-top: 16px;
    font-size: 13px;
    opacity: 0.75;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-dark);
    color: #8aaccc;
    text-align: center;
    padding: 28px 24px;
    font-size: 13px;
    line-height: 1.8;
  }

  footer a { color: #aac8e0; text-decoration: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    header { flex-direction: column; gap: 12px; text-align: center; }
    .header-phone { align-items: center; }
    .nvlb-banner { flex-direction: column; text-align: center; gap: 20px; }
    .nvlb-cta { width: 100%; text-align: center; }
    .hero-trust { flex-direction: column; gap: 10px; }
    .cta-btn{
        display: block;
    }
    .hero-medicare{
        flex-direction: column;
    }
    .hero-medicare span{
        display: block;  
    }
    .who-grid{
        grid-template-columns: 1fr;
    }
  }/* End custom CSS */