.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-title {
  text-align: center;
  font-weight: 800;
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.35s ease;
  font-size: 15px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
}

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