section { position: relative; z-index: 1; }
/* Masthead height and the hero pattern now live in global.css (inner-page masthead).
   They used to be duplicated here; the bare min-height had no media query and beat
   global's own mobile rule at every width. Do not re-add them. */
.page-hero-content p { font-family: 'Source Sans 3', sans-serif; font-size: 22px; font-weight: 400; color: #ffffff; }

/* â”€â”€ FAQ SECTION â”€â”€ */
.faq-section {
  padding: 80px 0 96px;
  background: var(--off-white);
  background-image: url('../images/bg-pattern.svg');
  background-repeat: repeat;
}
.faq-inner { max-width: 800px; margin: 0 auto; }

.faq-group { margin-bottom: 48px; }
.faq-group-label {
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cerise); margin-bottom: 24px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  font-family: var(--font-body); font-size: 18px; font-weight: 600;
  color: var(--navy); text-align: left; cursor: pointer;
  gap: 16px;
}
.faq-question:hover { color: var(--cerise); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cerise); transition: color 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-question:hover .faq-icon { color: var(--cerise-dk); }
.faq-answer {
  display: none;
  padding: 0 28px 24px;
  font-family: var(--font-body); font-size: 17px; color: #505050; line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* â”€â”€ STILL HAVE QUESTIONS â”€â”€ */
.faq-cta {
  margin-top: 64px;
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.faq-cta h3 {
  font-family: var(--font-heading); font-size: 30px; font-weight: 900;
  color: var(--navy); margin-bottom: 10px;
}
.faq-cta p {
  font-family: var(--font-body); font-size: 17px; color: #505050;
  margin-bottom: 28px;
}
.faq-cta .btn-primary {
  font-family: var(--font-card); font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--cerise); color: #fff;
  padding: 14px 36px; border-radius: 0;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; transition: background 0.2s;
}
.faq-cta .btn-primary:hover { background: var(--cerise-dk); }
.faq-cta .btn-arrow { display: inline-flex; transition: transform 0.2s ease; }
.faq-cta .btn-primary:hover .btn-arrow { animation: arrowBounceRight 0.6s ease infinite; }
@keyframes arrowBounceRight {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 768px) {
  .faq-section { padding: 56px 0 72px; }
  .faq-question { padding: 20px 22px; font-size: 16px; gap: 12px; }
  .faq-answer { padding: 0 22px 20px; font-size: 16px; }
  .faq-cta { padding: 40px 28px; margin-top: 48px; }
  .faq-cta h3 { font-size: 26px; }
}

@media (max-width: 480px) {
  .faq-question { padding: 18px 18px; font-size: 15px; }
  .faq-answer { padding: 0 18px 18px; font-size: 15px; }
  .faq-cta { padding: 32px 20px; }
  .faq-cta h3 { font-size: 23px; }
  .faq-cta .btn-primary { padding: 13px 26px; }
}
/* ══════════════════════════════════════════════════════════
   FAQ answers — wpautop() paragraphs
   ══════════════════════════════════════════════════════════
   In the approved template each answer was bare text directly inside
   .faq-answer, so the responsive scale above (17 / 16 / 15px) styled the visible
   text by inheritance. The theme renders the answer through wpautop(), which
   wraps every paragraph in <p> — and global.css then takes over the text:

     p { font-size: 18px }   a type selector on the <p> beats inheritance from
                             .faq-answer, so every breakpoint above was ignored
                             and answers rendered 18px at all widths (20% oversize
                             on a phone).
     * { margin: 0 }         collapsed the gap between paragraphs to zero, so the
                             5 multi-paragraph answers ran together as one block.

   Inheriting from the parent keeps ONE source of truth for the size: the scale
   above still governs, and this only stops the global rule intercepting it.
   ══════════════════════════════════════════════════════════ */

.faq-answer p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 14px;
}
.faq-answer p:last-child { margin-bottom: 0; }
