  /* -------------------------------------- */
  /* FAQ PAGE HEADER & SUBHEADER            */
  /* -------------------------------------- */
  body, html {
    scrollbar-width: auto;      /* Firefox base: auto | thin */
    -ms-overflow-style: auto;   /* Old IE/Edge */
  }

  /* Reserve space to avoid layout shift when scrollbars appear */
  html {
    overflow-y: auto;
    scrollbar-gutter: stable;
  }

  /* Firefox colors (thumb | track) and thin width */
  html {
    scrollbar-width: auto;
    scrollbar-color: #F16629 #FFEAE0;
  }

  /* Chrome/Edge/Safari */
  html::-webkit-scrollbar {
    width: 10px;                /* adjust 8–12px */
  }
  html::-webkit-scrollbar-track {
    background: #FFEAE0;        /* track color */
  }
  html::-webkit-scrollbar-thumb {
    background: #F16629;        /* thumb color */
    border-radius: 8px;         /* subtle rounding */
  }
  /* Optional hover shade (1 extra rule) */
  html::-webkit-scrollbar-thumb:hover {
    background: #D4571F;
  }
  
  .faq-more {
    display: block;
    text-align: center;
    font-size: 0.92rem;
    color: #888;
    margin-top: -4rem;
    letter-spacing: 0.01em;
  }
  .faq-header {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    color: #F16629;
    font-weight: 700;
  }

  /* -------------------------------------- */
  /* FAQ GRID & CARDS                       */
  /* -------------------------------------- */
  .faq-content { padding-bottom: 4rem !important; }
  .faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 2rem;
    justify-content: center;
    padding: 3rem 1rem 4rem 1rem;
    margin-bottom: 6em;
  }

  .faq-card-desktop {
    background: #F16629;
    color: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 370px;
    overflow: hidden;
    max-height: 5rem;
    transition: max-height 0.7s ease, padding 0.5s ease;
    margin-bottom: 2.5rem; 
  }
  .faq-card-desktop.active {
    max-height: 20rem;     /* adjust to fit your longest answer */
  }

  .faq-card-header {
    display: flex;
    align-items: flex-start;      /* allow header to grow vertically */
    justify-content: space-between;
    padding: 1rem 1.2rem;
    cursor: pointer;
    flex-wrap: wrap;              /* allow wrapping */
    gap: 0.5rem;                  /* space between elements if wrapped */
    min-height: 3.2rem;           /* ensures enough height for 2+ lines */
  }

  .faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    word-break: break-word;
    white-space: normal;
    flex: 1 1 0;                  /* allow to grow, but not shrink below image */
    min-width: 0;                 /* allow flexbox to shrink if needed */
    display: flex;
    align-items: center;
    gap: 0.7rem;                  /* space between image and text */
  }

  .faq-chevron {
    font-size: 1.3rem;
    margin-left: 1rem;           /* Space between question and arrow */
    align-self: center;          /* Vertically center arrow */
    transition: transform 0.3s;
  }
  .faq-card-desktop.active .faq-chevron {
    transform: rotate(180deg);
  }

  .faq-answer {
    padding: 1rem 1.2rem;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .faq-card-video .faq-question {
    display: flex;
    align-items: center;
  }
  .faq-card-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;               /* don't shrink the image */
    margin-right: 0.7rem;
  }
  .faq-video-embed {
    margin-top: 0.5rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
  }

  /* Fade-in from top animation */
  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Animate header and subheader */
  .faq-header,
  .faq-more,
  .faq-content > p {
    opacity: 0;
    animation: fadeDown 1.2s cubic-bezier(.4,0,.2,1) forwards;
    animation-delay: 0.4s;
  }

  /* Animate FAQ cards */
  .faq-card-desktop {
    opacity: 0;
    animation: fadeDown 0.8s cubic-bezier(.4,0,.2,1) forwards;
    animation-delay: 0.4s;
  }

  /* Stagger FAQ cards */
  .faq-card-desktop:nth-child(1) { animation-delay: 0.5s; }
  .faq-card-desktop:nth-child(2) { animation-delay: 0.6s; }
  .faq-card-desktop:nth-child(3) { animation-delay: 0.7s; }
  .faq-card-desktop:nth-child(4) { animation-delay: 0.8s; }
  .faq-card-desktop:nth-child(5) { animation-delay: 0.9s; }
  .faq-card-desktop:nth-child(6) { animation-delay: 1s; }

  /* ------------------------------------ */
/* MOBILE PORTRAIT (360px–430px)       */
/* ------------------------------------ */
@media (max-width: 430px) and (orientation: portrait) {
  html, body {
    overflow-x: hidden;
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* Old IE/Edge */
  }

  .faq-grid {
    display: block;
    padding: 1.2rem 0.2rem 2.5rem 0.2rem;
    margin-bottom: 2em;
    gap: 0;
  }

  .faq-card-desktop {
    max-width: 100%;
    margin: 0 0 1.2rem 0;
    border-radius: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    max-height: 5.2rem; /* collapsed height */
    overflow: hidden;
    transition: max-height 0.95s cubic-bezier(.4,0,.2,1), border-radius 0.3s, opacity 0.7s;
  }
  .faq-card-desktop.active {
    max-height: 40rem !important; /* enough for long answers/videos */
    border-radius: 1em;
    transition: max-height 1.1s cubic-bezier(.4,0,.2,1), border-radius 0.3s, opacity 0.7s;
  }

  .faq-card-header {
    padding: 0.85rem 1rem;
    min-height: 2.6rem;
    font-size: 1rem;
    background: #F16629;
    color: #fff;
  }

  .faq-question {
    font-size: 0.98rem;
    gap: 0.5rem;
  }

  .faq-card-img {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
  }

  .faq-chevron {
    font-size: 1.1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s;
  }
  .faq-card-desktop.active .faq-chevron {
    transform: rotate(180deg);
  }

  .faq-answer {
    padding: 0.85rem 1rem;
    font-size: 0.97rem;
    line-height: 1.5;
    background: #F16629;
    color: #fff;
    border-radius: 0 0 1em 1em;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.95s cubic-bezier(.4,0,.2,1), opacity 0.7s, background 0.2s;
  }
  .faq-card-desktop.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 1.1s cubic-bezier(.4,0,.2,1), opacity 0.7s, background 0.2s;
  }

  .faq-video-embed {
    margin-top: 0.5rem;
    border-radius: 0.7em;
    overflow: hidden;
    background: #fff;
    height: auto;
  }
  .faq-video-embed iframe {
    width: 100%;
    min-height: 180px;
    height: 38vw;
    max-height: 220px;
    border-radius: 0.7em;
    display: block;
  }
}