
/* FAQ Section */
.faq-page {
  padding: 20px 0;
}

.faq-page h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 14px 10px;
  color: var(--text);
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 10px;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 10px 15px;
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}
