.page--faq {
  padding: 80px 16px 120px;
}

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

.faq-title {
  text-align: center;
  margin-bottom: 48px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 42px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  opacity: 0.8;
}

.faq-question.open .faq-chevron {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.35s ease;
  line-height: 1.55;
}

.faq-answer.open {
  max-height: 800px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 16px;
}
