/* 业务页可见 FAQ 区
   样式取自 css/pricing.css 里已有的 FAQ 规则，单独抽出来给 meta-gala / exhibition / pd 用，
   避免为了几条 FAQ 样式去加载整份 pricing.css（那里面还有报价卡片等无关规则）。 */

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.faq-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  padding: 1.5rem 0;
}

.faq-question {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  font-size: 14px;
  color: #a9caec;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .faq-section {
    padding: 2.5rem 1.25rem;
  }

  .faq-section .section-title {
    font-size: 24px;
    margin-bottom: 2rem;
  }
}
