/* ── Reset scoped to this section only ── */
.faq-wp-wrap *, .faq-wp-wrap *::before, .faq-wp-wrap *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.faq-wp-wrap a { text-decoration: none; color: inherit; }

/* ── Design tokens (identical to your site) ── */
.faq-wp-wrap {
  --teal:        #5FC2BE;
  --navy:        #1F3F5B;
  --off-white:   #F5F7F8;
  --text-muted:  #5a7388;
  --border:      #dce8ef;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
  font-family: var(--font-body);
  color: var(--navy);
}

/* ── Container ── */
.faq-wp-wrap .container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

/* ── Tag pill ── */
.faq-wp-wrap .tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); background: rgba(95,194,190,.12);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}

/* ── Section heading ── */
.faq-wp-wrap .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--navy); line-height: 1.2;
}

/* ── Section sub ── */
.faq-wp-wrap .section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.7; max-width: 580px; margin-top: 12px;
}

/* ── FAQ section shell ── */
.faq-wp-wrap .faq {
  padding: 100px 0; background: var(--off-white);
}

/* ── Two-column layout ── */
.faq-wp-wrap .faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* ── Accordion list ── */
.faq-wp-wrap .faq-list { margin-top: 16px; }

.faq-wp-wrap .faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-wp-wrap .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--font-body);
}

.faq-wp-wrap .faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--teal);
  transition: transform .3s;
}

.faq-wp-wrap .faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-wp-wrap .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-wp-wrap .faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-wp-wrap .faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 20px;
}

/* ── Left CTA box ── */
.faq-wp-wrap .faq-cta-box {
  background: var(--navy);
  border-radius: 24px;
  padding: 36px;
  color: #fff;
  text-align: center;
  margin-top: 32px;
}

.faq-wp-wrap .faq-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.faq-wp-wrap .faq-cta-box p {
  font-size: 14px;
  opacity: .7;
  margin-bottom: 24px;
}

/* ── White button (text colour #1F3F5B as requested) ── */
.faq-wp-wrap .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1F3F5B;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all .2s;
  text-decoration: none;
}
.faq-wp-wrap .btn-white:hover { background: var(--off-white); }

/* ── Scroll-reveal ── */
.faq-wp-wrap [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.faq-wp-wrap [data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-wp-wrap [data-reveal-delay="1"] { transition-delay: .1s; }
.faq-wp-wrap [data-reveal-delay="2"] { transition-delay: .2s; }
.faq-wp-wrap [data-reveal-delay="3"] { transition-delay: .3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .faq-wp-wrap .faq-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .faq-wp-wrap .faq { padding: 72px 0; }
  .faq-wp-wrap .faq-cta-box { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .faq-wp-wrap .faq { padding: 56px 0; }
  .faq-wp-wrap .faq-question { font-size: 14px; }
}
