/* ===== FAQ ===== */
#faq { background: #fff; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  gap: 12px;
  transition: background .15s;
}
.faq-question:hover { background: var(--cream); }
.faq-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--green-leaf);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 15px;
  color: var(--text-mid);
  padding: 0 20px;
}
.faq-answer.open { max-height: 200px; padding: 0 20px 18px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
