.faq {
  background: var(--color-primary-dark);
  padding: 40px 0;
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-muted);
  display: block;
  margin-bottom: 16px;
}

.faq__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--color-white);
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
  color: var(--color-white);
  text-align: left;
}

.faq__question span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-white);
}

.faq__item--active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 24px;
}

.faq__item--active .faq__answer {
  max-height: 500px;
}

@media (max-width: 1023px) {
  .faq__title {
    font-size: 32px;
  }

  .faq__question {
    padding: 16px 20px;
  }

  .faq__question span {
    font-size: 16px;
  }

  .faq__answer p {
    padding: 0 20px 16px;
  }
}
