.faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
}

.faq-answer p {
  margin: 16px 0;
  font-size: 18px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* adjust if content is longer */
}

.faq-item.active .icon {
  transform: rotate(45deg);
}
