.faq-section {
  background: var(--dark-bg);
  padding: 80px 0;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.faq-item {
  background: var(--faq-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 30px 50px 30px 35px;
  cursor: pointer;
  user-select: none;
}

.faq-chevron {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-chevron svg {
  width: 14px;
  height: 7px;
  transition: transform 0.3s;
}

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

.faq-question h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  line-height: 1.4;
}

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

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

.faq-answer-inner {
  padding: 0 50px 45px 85px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  line-height: 1.7;
}

.faq-answer-inner p {
  margin-bottom: 1em;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .faq-question h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq-question {
    padding: 20px 25px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer-inner {
    padding: 0 25px 30px 60px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-question h3 {
    font-size: 14px;
  }

  .faq-answer-inner {
    font-size: 13px;
    padding: 0 20px 25px 50px;
  }
}
