.faq-section {
  background: #070b16;
  color: #cbd5e1;
  padding: 90px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h1 {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 10px;
}

.faq-header p {
  color: #94a3b8;
}

.faq-item {
  background: #0f172a;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  padding: 22px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  float: right;
  font-size: 22px;
  color: #22c55e;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  line-height: 1.8;
  color: #cbd5e1;
}

.faq-answer ol {
  padding-left: 20px;
}

/* Active */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: '−';
}

/* Responsive */
@media (max-width: 600px) {
  .faq-header h1 {
    font-size: 28px;
  }
}
