.mfaq {
  width: 100%;
  padding: 4rem 0;
}
.mfaq-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mfaq-h2 {
  font-family: 'Parisienne', cursive;
  font-size: 2.25rem;
  text-align: left;
  margin: 0 0 2rem;
  color: var(--c-primary, #002450);
}
.mfaq-item {
  border-bottom: 1px solid #e3e3e3;
}
.mfaq-q {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: left;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-primary, #002450);
}
.mfaq-q:hover { color: var(--c-btn-main, #c8a45a); }
.mfaq-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-right: 4px;
  margin-top: -4px;
}
.mfaq-item.is-open .mfaq-chevron { transform: rotate(-135deg); margin-top: 4px; }
.mfaq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mfaq-item.is-open .mfaq-a { max-height: 1200px; }
.mfaq-a-inner {
  padding: 0 0 1.3rem;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
}
