/* ===== FAQ PAGE STYLING (Branding Matched) ===== */

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #f9f5ff;
  color: #222;
  margin: 0;
  padding: 0;
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 120px auto 60px;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #6d28d9;
  margin-bottom: 40px;
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Card */
.faq-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-card.active {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* FAQ Question */
.faq-question {
  width: 100%;
  background: #f3f0ff;
  border: none;
  padding: 20px 24px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-question:hover {
  background: #ebe7ff;
}

.arrow {
  font-size: 1.2rem;
  color: #6d28d9;
  transition: transform 0.3s ease;
}

.faq-card.active .arrow {
  transform: rotate(-180deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: #fff;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 18px 0 22px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-section h2 {
      font-size: 2rem;
  }
  .faq-question {
      padding: 16px 20px;
      font-size: 1.05rem;
  }
  .faq-answer p {
      font-size: 0.95rem;
  }
}
