/* =======================
   FAQ PAGE
======================= */

.faq-header {
  margin-bottom: 30px;
}

.faq-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.faq-sub {
  font-size: 14px;
  color: #b5b5b5;
}

.faq-list {
  border-top: 1px solid #222;
}

.faq-item {
  border-bottom: 1px solid #222;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 18px 8px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-toggle {
  font-size: 18px;
  color: #3b82f6;
}

.faq-answer {
  display: none;
  padding: 0 8px 18px;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
