.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  transition: transform 0.2s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: #444;
}
.faq-item.active .faq-answer {
  display: block;
}
