<!-- CSS -->
<style>
.faq-section {
  max-width: 900px;
  margin: 50px auto;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 14px;
  color: #555;
}

.icon {
  font-size: 20px;
  transition: 0.3s;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}
</style>