/* ===== GEO FAQ 区块样式（官网 GEO 化，独立于 styles.css） ===== */
.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 14px;
  padding: 20px 24px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.faq-item:hover { box-shadow: 0 8px 24px rgba(20,40,80,.08); transform: translateY(-2px); }
.faq-q {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.5;
  color: #15233b;
  font-weight: 700;
  position: relative;
  padding-left: 26px;
}
.faq-q::before {
  content: "Q";
  position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #2f6bff; color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.faq-a {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #4a5568;
}
.faq-a a { color: #2f6bff; text-decoration: none; border-bottom: 1px solid rgba(47,107,255,.3); }
.faq-a a:hover { border-bottom-color: #2f6bff; }
@media (max-width: 640px) {
  .faq-item { padding: 16px 18px; }
  .faq-q { font-size: 16px; }
}
