.faqContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.faqItem { margin-bottom: 15px; border-bottom: 1px solid #ddd; padding-bottom: 10px; }

.faqQuestion {
  background-color: transparent;
  border: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  transition: color 0.3s;
}

.faqQuestion:hover { color: red; }

.faqAnswer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faqAnswerActive { max-height: 100px; transition: max-height 0.5s ease; }


