/* ── McKenna FAQ — Frontend Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Lato:wght@300;400;600;700&display=swap');

.mck-faq-section {
  background: #F5FFF3;
  padding: 60px 20px 80px;
  font-family: 'Lato', sans-serif;
  color: #2D2D2D;
}

.mck-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* ── Header ── */
.mck-faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.mck-faq-header h2 {
  font-family: 'Boogaloo', cursive;
  font-size: 42px;
  color: #2D2D2D;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.1;
}
.mck-faq-header p {
  font-size: 15px;
  color: #888;
  margin: 0;
}

/* ── FAQ Item ── */
.mck-faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  transition: box-shadow .2s;
}
.mck-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

/* ── Question row ── */
.mck-faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.mck-faq-question:hover { background: #fafafa; }
.mck-faq-question h3 {
  font-size: 16px;
  font-weight: 500;
  color: #2D2D2D;
  flex: 1;
  padding-right: 16px;
  margin: 0;
  line-height: 1.4;
}

/* ── Toggle icon ── */
.mck-faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(209,105,32,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}
.mck-faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: #D16920;
  stroke-width: 2.5;
  fill: none;
  transition: transform .3s;
}

.mck-faq-item.open .mck-faq-toggle {
  background: #D16920;
  transform: rotate(45deg);
}
.mck-faq-item.open .mck-faq-toggle svg {
  stroke: #fff;
}

/* ── Answer panel ── */
.mck-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mck-faq-item.open .mck-faq-answer {
  max-height: 600px;
}
.mck-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ── CTA ── */
.mck-faq-cta {
  text-align: center;
  margin-top: 36px;
}
.mck-faq-cta p {
  font-size: 14px;
  color: #888;
  margin: 0 0 4px;
}
.mck-faq-cta a {
  color: #D16920;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}
.mck-faq-cta a:hover { text-decoration: underline; }
.mck-faq-cta-label { color: #D16920; font-weight: 700; font-size: 15px; }
.mck-faq-cta a {
  color: #d16920 !important;
  font-weight: 700;
  text-decoration: none !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  position: static !important;
  filter:none !important;
  line-height: 22px !important;
}