:root {
    /* For FAQs */
    --navy:   #0b1f3a;
    --blue:   #1a4480;
    --teal:   #00b4a2;
    --off:    #f5f7fa;
    --muted:  #64748b;
    --border: #e2e8f0;
    --text:   #1e293b;
    --mint:   #e6f9f7;

    --font-sans:  'DM Sans', system-ui, sans-serif;
    --font-head:  'Syne', sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;

    --r-md: 12px;
    --max-w: 1200px;
}

/* ── Layout ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.py-xl { padding-top: 6rem; padding-bottom: 6rem; }
.faq-bg { background: var(--off); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

/* ── Eyebrow ── */
.section-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.eyebrow-line { width: 32px; height: 2px; background: var(--teal); border-radius: 2px; }
.label {
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal);
}

/* ── Intro column ── */
.faq-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.2; color: var(--navy);
  margin-bottom: 1rem;
}
.faq-intro p { color: var(--muted); margin-bottom: 1.5rem; }

/* ── Accordion items ── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--web-radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover,
.faq-item.open { border-color: var(--blue); }

.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.4rem; gap: 1rem;
  cursor: pointer; user-select: none;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  color: var(--navy);
}

/* Chevron circle */
.faq-q .chevron {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .25s;
}
.faq-q .chevron svg {
  width: 14px; height: 14px;
  stroke: var(--blue); fill: none;
  transition: transform .25s;
}
.faq-item.open .chevron { background: var(--blue); }
.faq-item.open .chevron svg { stroke: #fff; transform: rotate(180deg); }

/* Answer panel */
.faq-a {
  max-height: 0; 
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: .9rem; 
  color: var(--muted); 
  line-height: 1.7;
}
.faq-a-inner { padding: 0 1.4rem 1.2rem; }
.faq-item.open .faq-a { max-height: 200px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}