

/* FAQ Section */
.faq { margin-top: 50px; }


.faq-item { border-bottom: 1px solid rgba(255,255,255,.1); }


.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}


.faq-question .icon { transition: transform 0.2s; }


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


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: #cfe3ff;
  font-size: 15px;
  line-height: 1.5;
  padding-right: 5px;
}


.faq-answer.open { padding: 0 0 18px; }