.faq-section {
  padding: 4rem 0;
  background: transparent;
}
.faq-section .container {
  max-width: 1200px; /* align with site container */
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 48px);
}
.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-text-primary);
  font-weight: 300;
  font-family: 'Bangers', cursive;
}
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-primary);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  cursor: pointer;
  position: relative;
}
.faq-question:hover {
  color: var(--color-red-light);
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--color-text-light);
}
.faq-question.open::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--color-text-light);
  padding: 0;
}
.faq-answer.open {
  max-height: 1000px; /* allow long answers */
  padding: 0.5rem 0;
}
.faq-answer p, .faq-answer {
  margin: 0;
  line-height: 1.5;
}
