.faq-container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.faq-container h2 {
  text-align: center;
  color: #d966ff;
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-question {
  cursor: pointer;
  padding: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #d966ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  color: #b8860b;
}
.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #555;
}
.faq-question::after {
  content: "+";
  font-weight: bold;
  transition: transform 0.3s;
}
.faq-question.active::after {
  content: "-";
}