
/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  background: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.faq-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  text-align: left;
  margin-bottom: 25px;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 0;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-link {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  flex: 1;
  padding-right: 10px;
}
.faq-toggle {
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  color: #000;
  line-height: 1;
  padding: 0;
  min-width: 22px;
}
.faq-answer {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-right: 30px;
}
.faq-item.active .faq-answer { max-height: 400px; }
