  /* ========== FAQ HERO ========== */
  .faq-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* FAQ title (inherits mini-hero scale) */
  .faq-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
    color: #336699 !important;
  }
  
  /* FAQ subtitle */
  .faq-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 720px;
    margin: 0.5rem auto 0;
    opacity: 0.85;
    color: #475569;
  }

  /* =========================================================
   FAQ SECTION HEADER — Centered Luxury Style
   ========================================================= */

.faq-section-block {
  margin-top: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  opacity: 0;
  animation: dividerFade 0.8s ease forwards;
}

@keyframes dividerFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-divider {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}

/* Centered underline animation */
.faq-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.6s ease;
  opacity: 0.4;
}

.faq-section-block:hover .faq-divider::after {
  width: 60%;
}

  

/* =========================================================
   FAQ — Old Money Glass Panel Accordion (Hybrid, Green Accents)
   ========================================================= */

   .faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    opacity: 0;
    animation: faqFadeIn 0.8s ease forwards;
  }
  
  /* Staggered fade-in for each item */
  .faq-item {
    opacity: 0;
    transform: translateY(12px);
    animation: faqItemFade 0.6s ease forwards;
  }
  
  .faq-item:nth-child(1) { animation-delay: 0.15s; }
  .faq-item:nth-child(2) { animation-delay: 0.25s; }
  .faq-item:nth-child(3) { animation-delay: 0.35s; }
  .faq-item:nth-child(4) { animation-delay: 0.45s; }
  .faq-item:nth-child(5) { animation-delay: 0.55s; }
  
  @keyframes faqFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes faqItemFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* PANEL ITEM — softer glass */
  .faq-item {
    background: rgba(255, 255, 255, 0.585);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(208,213,221,0.35);
    padding: 1.6rem 1.8rem;
    margin-bottom: 1.4rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    position: relative;
    border-left: 4px solid var(--primary);
  }
  
  /* Hover */
  .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15,23,42,0.12);
  }
  
  /* OPEN STATE — soft green glow */
  .faq-item.open {
    background: rgba(255,255,255,0.75);
    box-shadow:
      0 22px 50px rgba(15,23,42,0.16),
      0 0 18px rgba(95,127,113,0.25); /* green glow */
    border-left: 4px solid var(--accent-green);
  }
  
  /* QUESTION — refined blue */
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #28507a;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* OPEN QUESTION — stays blue (no gradient) */
  .faq-item.open .faq-question {
    color: #28507a;
  }
  
  /* ARROW */
  .faq-arrow {
    font-size: 1.6rem;
    opacity: 0.5;
    transition: var(--transition);
  }
  
  .faq-item.open .faq-arrow {
    transform: rotate(90deg);
    opacity: 0.9;
  }
  
  /* ANSWER */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-top: 0.8rem;
  }
  
  .faq-item.open .faq-answer {
    max-height: 600px;
    opacity: 1;
    margin-top: 1.2rem;
  }
  