.accent {
  color:#2da8ff; /* soft pink like Marie’s */
  font-style: italic;
  background-color: rgba(255,212,205,0.15); /* optional underline background */
  padding: 0 .25em;
  border-radius: .2em;
}
/* FAQ Section styles (10X CFO) */
.faq-section {
  background: #F5F7FB;
  padding: 80px 20px;
  box-sizing: border-box;
}
.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.faq-title {
  text-align: center;
  font-family: "ivypresto-display", serif;
  color: #1d1b1c;
  font-size: 2.25rem;
  margin-bottom: 18px;
  line-height: 1.1;
}

/* Accordion base */
.faq-accordion {
  margin-top: 20px;
  display: grid;
  gap: 18px;
}

/* style the native details/summary */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* summary (question) */
.faq-question {
  list-style: none;
  cursor: pointer;
  font-family: "area-normal", sans-serif;
  font-weight: 600;
  color: #1d1b1c;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 8px;
}

/* add a chevron using ::after */
.faq-question::after {
  content: "▾";
  font-size: 1.05rem;
  color: #6c6c6c;
  transition: transform .18s ease;
}

/* when open rotate chevron and change color */
.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
  color: #1d1b1c;
}

/* answer block */
.faq-answer {
  margin-top: 12px;
  font-family: "area-normal", sans-serif;
  color: #1d1b1c;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.98;
}

/* highlight border / accent when open */
.faq-item[open] {
  border: 2px solid #e4f58e;
  padding: 16px 18px; /* slightly reduce padding to keep height stable with border */
}

/* responsive: two-column layout on wide screens */
@media (min-width: 900px) {
  .faq-accordion {
    grid-template-columns: 1fr 1fr;
  }
}

/* mobile tweaks */
@media (max-width: 899px) {
  .faq-title { font-size: 1.6rem; }
  .faq-item { padding: 14px 16px; }
  .faq-question { font-size: 1rem; }
  .faq-answer { font-size: .98rem; }
}
