.faq-section {
  background-color: #0b0f1a;
  padding: 80px 0;
  min-height: 800px;
}

.faq-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header .section-title {
  margin-bottom: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background-color: #10182a;
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  cursor: pointer;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
}

.faq-question span {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  text-align: left;
}

.faq-question .chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  fill: #ffffff;
  flex-shrink: 0;
  margin-left: 16px;
}

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

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

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

.faq-answer-inner {
  padding: 0 40px 30px;
}

.faq-answer p {
  font-family: "Syne", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 19.2px;
}

@media (max-width: 1023px) {
  .faq-section {
    padding: 60px 0;
    min-height: auto;
  }

  .faq-question {
    padding: 24px 30px;
  }

  .faq-question span {
    font-size: 18px;
  }

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

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
    min-height: auto;
  }

  .faq-header {
    margin-bottom: 32px;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-question {
    padding: 20px;
  }

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

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

  .faq-answer p {
    font-size: 14px;
  }
}
