.faq-section {
  padding: 40px 0;
  background-color: var(--color-bg-main);
}

.faq-header {
  text-align: center;
  max-width: 917px;
  margin: 0 auto 48px;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 54px;
  letter-spacing: 1.4px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.faq-header p {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: -0.96px;
  color: var(--color-text-muted);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 30px 70px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 22px;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 70px 30px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-white);
  line-height: 19.2px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

@media (max-width: 1023px) {
  .faq-section {
    padding: 40px 20px;
  }

  .faq-header h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .faq-question {
    font-size: 18px;
    padding: 20px 24px;
  }

  .faq-answer-inner {
    padding: 0 24px 20px;
  }
}
