.faq { padding: 24px 0; background-color: #f5f7fa; }
.faq .faq-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.faq .faq-header { margin-bottom: 32px; }
.faq .faq-header .faq-title { font-size: 28px; font-weight: 800; color: #1a1a2e; }
.faq .faq-header .faq-subtitle { font-size: 16px; color: #5a5a6e; }
.faq .faq-list { max-width: 800px; }
.faq .faq-list .faq-item { background-color: #ffffff; border-radius: 10px; margin-bottom: 8px; border: 1px solid #e8e8ef; overflow: hidden; }
.faq .faq-list .faq-item .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; cursor: pointer; gap: 16px; }
.faq .faq-list .faq-item .faq-question .faq-question-text { font-size: 16px; font-weight: 600; color: #1a1a2e; }
.faq .faq-list .faq-item .faq-question .faq-toggle { font-size: 18px; color: #1a8a4a; transition: transform 0.3s ease; flex-shrink: 0; }
.faq .faq-list .faq-item .faq-question.active .faq-toggle { transform: rotate(45deg); }
.faq .faq-list .faq-item .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq .faq-list .faq-item .faq-answer.open { padding: 0 20px 20px; max-height: 500px; }
.faq .faq-list .faq-item .faq-answer .faq-answer-text { font-size: 15px; line-height: 26px; color: #5a5a6e; }
.faq .faq-list .faq-item .faq-answer .faq-answer-text a { color: #1a8a4a; font-weight: 600; text-decoration: underline; }
.faq .faq-list .faq-item .faq-answer .faq-answer-text a:hover { color: #f57c00; }
@media (min-width: 768px) {
  .faq { padding: 44px 0; }
  .faq .faq-container { padding: 0 24px; }
  .faq .faq-header .faq-title { font-size: 34px; }
  .faq .faq-list .faq-item .faq-question .faq-question-text { font-size: 17px; }
}
@media (min-width: 1200px) {
  .faq .faq-container { padding: 0 32px; }
}
