.section-faq {
  padding: 80px 0;
  background: #0a005e;
}

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

.section-faq .section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-faq .section-header p {
  font-size: 16px;
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto;
}

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

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: #0a005e;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question .faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

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

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

.faq-answer-inner {
  padding: 0 28px 24px 28px;
  font-size: 14px;
  line-height: 1.7;
  color: #0a005e;
}

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

@media (max-width: 768px) {
  .section-faq .section-header h2 {
    font-size: 28px;
  }
}
