.category-faq {
  margin: 40px 0;
}
.faq-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 12px;
  font-weight: bold;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  position: relative;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 12px;
}
.faq-question.active {
  background: #e2e2e2;
}
.faq-answer p {
  margin: 10px 0;
}
