.faq-wrapper {
  max-width: 1000px;
  margin: 50px auto;
  font-family: Arial, sans-serif;
}
.faq-wrapper p {
  margin: unset;
}

.faq-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #111;
}

.faq-card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
  overflow: hidden;
}

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

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

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

.faq-answer.open {
  padding: 16px 20px;
}

.faq-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 0;
}
