.faq-container {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  margin: 10px auto;
}

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }
}

.faq-column {
  flex: 1;
}

.faq-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 12px;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000; /* 默认文字黑色 */
  /* 新增：移除按钮默认的焦点/活跃状态文字样式变化 */
  outline: none;
  box-shadow: none;
}

/* 关键优化：明确设置悬停状态文字颜色为黑色，确保不变化 */
.faq-question:hover {
  background: #f8f8f8;
  color: #000; /* 强制悬停时文字仍为黑色，优先级更高 */
}

/* 可选：新增激活状态（展开时）文字仍保持黑色 */
.faq-question.active {
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fafafa;
}

.faq-answer-content {
  padding: 16px 18px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
  color: #000; /* 图标也保持黑色，视觉统一 */
}
