 
    /* ───────────────────────────────────────────
       RESET & BASE
    ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #1a1a2e;
      font-size: 15px;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ───────────────────────────────────────────
       CSS VARIABLES
    ─────────────────────────────────────────── */
    :root {
      --green-900: #064e3b;
      --green-800: #065f46;
      --green-700: #047857;
      --green-600: #059669;
      --green-500: #10b981;
      --green-400: #34d399;
      --green-200: #a7f3d0;
      --green-100: #d1fae5;
      --green-50:  #ecfdf5;

      --sky-900:  #0c4a6e;
      --sky-800:  #075985;
      --sky-700:  #0369a1;
      --sky-600:  #0284c7;
      --sky-500:  #0ea5e9;
      --sky-400:  #38bdf8;
      --sky-200:  #bae6fd;
      --sky-100:  #e0f2fe;
      --sky-50:   #f0f9ff;

      --white:    #ffffff;
      --gray-50:  #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-400: #94a3b8;
      --gray-500: #64748b;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-800: #1e293b;
      --gray-900: #0f172a;

      --nav-h: 70px;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    }

   
  

    /* ───────────────────────────────────────────
       HERO BANNER
    ─────────────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      background:  linear-gradient(160deg, #ffffff 0%, #f0fdf4 50%, #f0f9ff 100%);
      padding: 80px 32px 72px 120px;
      text-align:left;
      display: flex;
      justify-content: flex-start; 
    }
    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 15% 50%, rgba(16,185,129,0.18) 0%, transparent 55%),
        radial-gradient(circle at 85% 30%, rgba(14,165,233,0.18) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(6,78,59,0.4) 0%, transparent 60%);
      pointer-events: none;
    }
    
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin-left: 150px;  
    }
    .hero-breadcrumb {
      display: flex;
      align-items: left;
      justify-content: left;
      gap: 8px;
      margin-bottom: 24px;
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      letter-spacing: 0.10em;
    }
    .hero-breadcrumb span {color:#494848;
     }
    .hero-breadcrumb-dot {
      width: 3px; height: 3px;
      border-radius: 50%;

      background: rgba(255,255,255,0.3);
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(16,185,129,0.18);
      border: 1px solid rgba(52,211,153,0.35);
      color:black;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 40px;
      margin-bottom: 22px;
    }
    .hero-tag-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green-400);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero h1 {
      font-size: clamp(32px, 5vw, 54px);
      font-weight: 800;color: #494848;
      line-height: 1.12;
      letter-spacing: 0.5px;
      margin-bottom: 18px;
    }
    .hero h1 em {
      font-style: normal;
      background: #088AC1;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 16px;
      font-weight: 400;color:#494848;
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.65;
    }
    /* Search */
    .hero-search {
      position: relative;
      max-width: 400px;
      margin-left: 0;     
      margin-right: auto;
    
    }
    .hero-search input { padding-left: 42px;
      background: var(--white);  
      color: var(--gray-800);    
      border: 1.5px solid var(--gray-200);
      width: 100%;
      padding: 15px 20px 15px 50px;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-size: 14.5px;
      outline: none;
      
      
    }
    .hero-search input::placeholder {color:#494848;
    }
    .hero-search input:focus {
      border-color: var(--sky-400);
      background: whitesmoke;
    }
    .hero-search-icon {
      position: absolute;  left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px; height: 18px;
      color: var(--gray-400);
      pointer-events: none;
    }
    

    /* ───────────────────────────────────────────
       TAB NAV (category pills)
    ─────────────────────────────────────────── */
  
.tab-nav-wrap {
  position: sticky;   
  top: 65px;  
    /*z-index: 100;*/
  z-index:99;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
  scrollbar-width: none;

}
    .tab-nav-wrap::-webkit-scrollbar { display: none; }
    .tab-nav {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      gap: 0;
      align-items: stretch;
    }
    .tab-btn {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 14px 18px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--gray-500);
      background: transparent;
      border: none;
      border-bottom: 2.5px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: color 0.18s, border-color 0.18s;
    }
    .tab-btn:hover { color: var(--green-700); }
    .tab-btn.active {
      color: var(--green-700);
      border-bottom-color: var(--green-600);
      font-weight: 600;
    }
    .tab-icon {
      font-size: 14px;
      line-height: 1;
    }

    /* ───────────────────────────────────────────
       MAIN LAYOUT
    ─────────────────────────────────────────── */
  
  .page-wrap {
   display: grid;
   grid-template-columns: 300px 1fr; 
   gap: 40px;
   max-width: 1280px;
   margin: 40px auto;
   padding: 0 20px;  
   align-items: start; 
  }

    /* ───────────────────────────────────────────
       SIDEBAR
    ─────────────────────────────────────────── */
    .sidebar {
      position: sticky;
      top: 80px; 
      height: fit-content; 
      top: calc(var(--nav-h) + 52px); 
    }
    .sidebar-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .sidebar-head {
      background: linear-gradient(135deg, var(--green-700), var(--sky-700));
      padding: 20px 20px 16px;
    }
    .sidebar-head-title {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.10em;
      color: rgba(255,255,255,0.7);
      margin-bottom: 4px;
    }
    .sidebar-head-sub {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
    }
    .sidebar-nav { 
      display: contents;
      height: auto;
      padding: 8px 0; }
    .sidebar-nav-item a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      font-size: 13.5px;
      font-weight: 400;
      color: var(--gray-600);
      transition: all 0.16s;
      border-left: 3px solid transparent;
    }
    .sidebar-nav-item a:hover {
      background: var(--green-50);
      color: var(--green-700);
      border-left-color: var(--green-400);
    }
    .sidebar-nav-item a.active {
      background: var(--green-50);
      color: var(--green-700);
      border-left-color: var(--green-600);
      font-weight: 600;
    }
    .sidebar-nav-icon {
      width: 28px;
      height: 28px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }
    .icon-green { background: var(--green-100); }
    .icon-sky   { background: var(--sky-100); }
    .sidebar-nav-count {
      margin-left: auto;
      background: var(--gray-100);
      color: var(--gray-500);
      font-size: 10.5px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 10px;
    }
    /* Contact box in sidebar */
    .sidebar-contact {
      margin-top: 20px;
      background: linear-gradient(135deg, #7bbbd6, #79d4b6);

      border-radius: var(--radius-lg);
      padding: 24px 20px;
      text-align: center;
      color: var(--white);
    }
    .sidebar-contact-img {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      margin: 0 auto 12px;
      background: rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }
    .sidebar-contact h4 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--white);
    }
    .sidebar-contact p {
      font-size: 12px;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
      margin-bottom: 14px;
    }
    .sidebar-contact-btn {
      display: block;
      padding: 9px 20px;
      background: var(--green-500);
      color: var(--white);
      border-radius: var(--radius-sm);
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      transition: background 0.18s;
    }
    .sidebar-contact-btn:hover { background: var(--green-600); }

    /* ───────────────────────────────────────────
       FAQ MAIN CONTENT
    ─────────────────────────────────────────── */
    .faq-main { min-width: 0; }

    .no-results-msg {
      display: none;
      text-align: center;
      padding: 60px 24px;
      color: var(--gray-400);
    }
    .no-results-msg svg { margin: 0 auto 16px; opacity: 0.4; }
    .no-results-msg h3 { font-size: 18px; color: var(--gray-500); margin-bottom: 8px; }
    .no-results-msg p { font-size: 14px; }

    /* Category section */
    .faq-section { margin-bottom: 56px; scroll-margin-top: 130px; }
    .faq-section:last-of-type { margin-bottom: 0; }

    .section-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 2px solid var(--gray-100);
    }
    .section-icon-wrap {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .bg-green-soft { background: var(--green-100); }
    .bg-sky-soft   { background: var(--sky-100); }
    .section-title-group { flex: 1; }
    .section-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--gray-800);
      letter-spacing: -0.01em;
    }
    .section-subtitle {
      font-size: 12px;
      color: var(--gray-400);
      margin-top: 2px;
    }
    .section-badge {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      flex-shrink: 0;
    }
    .badge-green { background: var(--green-100); color: var(--green-700); }
    .badge-sky   { background: var(--sky-100);   color: var(--sky-700); }

    /* Accordion item */
    .faq-item {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
      background: var(--white);
    }
    .faq-item:hover {
      border-color: var(--gray-300);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .faq-item.is-open {
      border-color: var(--green-400);
      box-shadow: 0 4px 20px rgba(16,185,129,0.10);
    }
    .faq-trigger {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 18px 20px;
      font-family: 'Inter', sans-serif;
      font-size: 14.5px;
      font-weight: 500;
      color: var(--gray-800);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: background 0.15s;
    }
    .faq-trigger:hover { background: var(--gray-50); }
    .faq-item.is-open .faq-trigger { background: var(--green-50); color: var(--green-800); }

    .faq-q-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--gray-100);
      color: var(--gray-500);
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, color 0.2s;
    }
    .faq-item.is-open .faq-q-num {
      background: var(--green-500);
      color: var(--white);
    }
    .faq-q-text { flex: 1; line-height: 1.45; }
    .faq-toggle-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--gray-100);
      color: var(--gray-500);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
      font-weight: 300;
      line-height: 1;
      transition: background 0.2s, color 0.2s, transform 0.25s;
    }
    .faq-item.is-open .faq-toggle-icon {
      background: var(--green-500);
      color: var(--white);
      transform: rotate(45deg);
    }

    .faq-body-wrap {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .faq-item.is-open .faq-body-wrap { max-height: 400px; }

    .faq-answer {
      padding: 0 20px 20px 60px;
      font-size: 14px;
      line-height: 1.75;
      color: var(--gray-600);
      border-top: 1px solid var(--green-100);
      background: var(--white);
    }
    .faq-answer-inner {
      padding-top: 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }
   

    /* ───────────────────────────────────────────
       CTA BAND
    ─────────────────────────────────────────── */
    .cta-band {
      background: linear-gradient(130deg, #0d3d28 0%, #196b47 50%, #0272b0 100%);
      padding: 56px 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      margin-top: 60px;
    }

    .cta-band::before {
      content: 'FAQ';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 160px;
      font-weight: 900;
      font-style: italic;
      color: rgba(255, 255, 255, .05);
      letter-spacing: -.06em;
      pointer-events: none;
    }

    .cta-band::after {
      content: '';
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .05);
      top: -120px;
      right: 180px;
    }

    .cta-text h2 {
      font-size: clamp(22px, 3vw, 36px);
      font-weight: 800;
      letter-spacing: -.04em;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.1;
    }

    .cta-text h2 em {
      font-style: italic
    }

    .cta-text p {
      font-size: 14px;
      color: rgba(255, 255, 255, .6);
      line-height: 1.65;
      max-width: 400px
    }

    .cta-acts {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
      position: relative;
      z-index: 1
    }

    .cbtn-w {
      padding: 12px 24px;
      border-radius: 9px;
      background: #fff;
      color: #0d3d28;
      font-size: 13px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .16s;
    }

    .cbtn-w:hover {
      opacity: .92;
      transform: translateY(-2px)
    }

    .cbtn-g {
      padding: 12px 18px;
      border-radius: 9px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, .75);
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .18);
      cursor: pointer;
      transition: all .14s;
      font-family: 'Inter', sans-serif;
    }

    .cbtn-g:hover {
      background: rgba(255, 255, 255, .17);
      color: #fff
    }

  




/* ───────────────────────────────────────────
    RESPONSIVE DESIGN
────────────────────────────────────────── */

/* LARGE TABLET (≤ 1100px) */
@media (max-width: 1100px) {

  .page-wrap {
    grid-template-columns: 260px 1fr; 
    gap: 24px;
  }

  .hero-inner {
    margin: 0 auto;               /* Keeps content centered structurally */
  }

  .hero {
    padding: 70px 24px 60px 24px; /* Balanced uniform padding */
  }
  
  .ans-accent { 
    display: none; 
  } 
}


/* TABLET (≤ 900px) */
@media (max-width: 900px) {

  /* Layout becomes single column */
  .page-wrap {
    grid-template-columns: 1fr;
  }

  /* Hide sidebar */
  .sidebar {
    display: none;
  }

  /* Hero fix */
  .hero {
    padding: 60px 20px;
    text-align: center;           /* Replaced 'left' to keep text centered */
  }

  .hero-inner {
    margin: 0 auto;               /* Replaced 'margin-left: 0' */
    max-width: 100%;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto 36px;          /* Ensures sub-text block stays centered */
  }

  .hero-search {
    position: relative;
    margin: 0 auto;               /* Keeps the search input centered */
  }

  .hero-search-icon {
    left: 14px;                   /* Unified alignment with base icon styles */
    width: 16px;
    height: 16px;
  }

  .hero-search input {
    padding-left: 46px;
  }

  /* Tabs scroll */
  .tab-nav {
    padding: 0 16px;
  }
  
  .ans-accent { 
    display: none; 
  } 
}


/* MOBILE (≤ 600px) */
@media (max-width: 600px) {

  /* Global spacing */
  .page-wrap {
    padding: 20px 14px;
    margin: 20px auto;
  }

  /* Hero */
  .hero {
    padding: 50px 16px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 13.5px;
  }

  .hero-tag {
    font-size: 10px;
    padding: 5px 12px;
  }

  /* Search bar */
  .hero-search input {
    padding: 13px 16px 13px 42px;
    font-size: 13px;
  }

  /* FAQ */
  .faq-trigger {
    font-size: 13.5px;
    padding: 14px 14px;
  }

  .faq-answer {
    padding: 0 14px 14px 14px; 
  }

  .faq-answer-inner {
    flex-direction: column;
  }

  /* Section */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-title {
    font-size: 16px;
  }

  /* CTA full width fix */
  .cta-band {
    padding: 32px 20px;
    flex-direction: column;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 24px;
  }

  .cta-text p {
    font-size: 13.5px;
    max-width: 100%;
  }

  .cta-acts {
    width: 100%;
    flex-direction: column;
  }

  .cbtn-w,
  .cbtn-g {
    width: 100%;
  }
}


/* EXTRA SMALL DEVICES (≤ 400px) */
@media (max-width: 400px) {

  .hero h1 {
    font-size: 22px;
  }
 
  .hero-sub {
    font-size: 12.5px;
  }

  .faq-trigger {
    font-size: 13px;
  }

}

@media (max-width: 600px), (max-width: 400px) {

  .faq-trigger {
    gap: 10px;
  }

  .faq-answer {
    padding: 12px 14px 14px 14px;  
  }

  .faq-answer-inner {
    gap: 8px;
    align-items: flex-start;
  }

  .ans-accent { 
    display: none; 
  } 
}


















/* IPAD PRO & LARGE TABLET (820px – 1180px) — FINAL STICKY TAB FIX */
@media only screen and (min-width: 820px) and (max-width: 1180px) {

  /* ─── 1. NAVBAR (EXACTLY AS ASSET SCORE) ─────────────── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px !important;
    overflow: visible !important;
    background: #ffffff !important;
    border-bottom: 1px solid #eef2f7 !important;
    position: relative !important;
  }

  /* LOGO – max-height 30px, auto width */
  .logo img,
  .nav-logo img,
  .brand-logo img {
    max-height: 30px !important;
    width: auto !important;
  }

  /* NAV LINKS CONTAINER */
  .nav-links {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0px;
    flex: 0 1 auto !important;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible !important;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  /* INDIVIDUAL NAV LINKS */
  .nav-links a {
    white-space: nowrap;
    font-size: 10px !important;
    padding: 5px 6px !important;
    flex-shrink: 0;
  }

  /* RIGHT BUTTON AREA */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 12px !important;
  }

  /* LOGIN BUTTON */
  .btn-ghost-sm,
  .login-btn {
    font-size: 10px !important;
    padding: 7px 10px !important;
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
  }

  /* DROPDOWN FIX */
  .dropdown,
  .dropdown-menu,
  .submenu {
    z-index: 99999 !important;
  }

  .dropdown-menu,
  .submenu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    padding: 8px 0;
    min-width: 220px;
  }

  /* REMOVE TOP GAP ABOVE NAV */
  html,
  body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* ─── 2. FAQ PAGE LAYOUT (FIXES UI ISSUES) ─────────── */
  .hero {
    padding: 56px 28px 64px !important;
    margin-bottom: 0 !important;
  }

  .hero-inner {
    margin: 0 auto !important;
    max-width: 85%;
    text-align: center;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.2;
  }

  .hero-search {
    margin: 28px auto 20px auto;
  }

  /* ═══════════════════════════════════════════════════════════════
     STICKY TAB NAVIGATION — FINAL WORKING FIX
     ═══════════════════════════════════════════════════════════════ */
.tab-nav-wrap {
  position: sticky !important;
  top: 1px !important;
  z-index: 1000 !important;
  background: white !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

  /* Add scroll margin to sections so content doesn't hide behind sticky nav */
  .faq-section {
    scroll-margin-top: 120px !important;
  }

  /* GRID LAYOUT – SIDEBAR + MAIN CONTENT */
  .page-wrap {
    display: grid !important;
    grid-template-columns: 260px 1fr !important;
    gap: 30px !important;
    align-items: start !important;
    margin-top: 20px;
    padding: 0 20px;
    overflow: visible !important;
  }

  /* SIDEBAR – STICKY POSITION (BELOW TAB NAV) */
  .sidebar {
    position: sticky !important;
    top: 160px !important;
    align-self: start !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
  }

  /* FAQ ANSWER PADDING */
  .faq-answer {
    padding: 0 20px 20px 56px;
  }

  /* CTA BAND */
  .cta-band {
    padding: 46px 30px;
    gap: 24px;
  }

  .cta-text h2 {
    font-size: 30px;
  }

  .cta-acts {
    flex-wrap: nowrap;
  }

  .cbtn-w,
  .cbtn-g {
    white-space: nowrap;
  }
}

/* VERY LARGE IPAD PRO (up to 1366px) – EXTRA SAFETY */
@media (min-width: 1181px) and (max-width: 1366px) {
  .page-wrap {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
  .sidebar {
    top: 140px;
  }
}