.faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  font-weight: bold;
  font-size: 32px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-weight: 600;
  color: #222;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-question.active {
  background-color: #28a745;
  color: white;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.faq-icon.active {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  background-color: #fafafa;
  color: #555;
  line-height: 1.6;
  opacity: 0;
}

.faq-answer.active {
  max-height: 500px;
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
}
