/* FAQ Section */
.faq-section {
  padding: 4rem 10rem;
  background: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.faq-title {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-title h2 {
  font-size: 2rem;
  color: #222;
}

/* FAQ Item */
.faq {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  cursor: pointer;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: #ff6b35;
  transition: transform 0.3s ease;
}

.faq.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq.active .faq-answer {
  max-height: 500px; /* enough to expand content */
  padding: 0.5rem 0;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-section {
    padding: 3rem 5rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 2rem;
  }

  .faq-title h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}
