body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.faq-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}

.faq-subheading {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5f0ec;
  border-radius: 20px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.faq-icon {
  font-size: 26px;
  font-weight: 400;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #555;
  line-height: 1.7;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 15px;
}
