/* ── FAQ Section (course-faq partial) ─────────────────────────────────────── */
.faq-section {
  padding-top: 50px;
}

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

.faq-question {
  padding: 25px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Switzer", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #ddd;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff3b30;
  font-size: 1.2rem;
}

.faq-toggle-icon {
  font-size: 0.9rem;
  color: #888;
  transition: transform 0.3s ease;
}

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

.faq-answer p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-bottom: 25px;
  margin: 0;
  padding-left: 40px;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: #fff;
}
