/* ── FAQ CMS Section ─────────────────────────────────────────────────────── */
.faq-cms-section {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.faq-cms-section .container {
  max-width: 820px;
}

.faq-cms-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.faq-cms-header h2 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a1a2e;
}

.faq-cms-icon {
  color: #2d6fdf;
  flex-shrink: 0;
}

.faq-cms-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-cms-item {
  border-radius: 12px;
  border: 1.5px solid #e5eaf5;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(30, 60, 120, .05);
  transition: box-shadow .2s, border-color .2s;
}

.faq-cms-item:hover {
  border-color: #b3c9f5;
  box-shadow: 0 4px 16px rgba(30, 60, 120, .09);
}

.faq-cms-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: inherit;
  gap: 12px;
}

.faq-cms-q {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  flex: 1;
  line-height: 1.6;
}

.faq-cms-arrow {
  flex-shrink: 0;
  color: #6b7280;
  transition: transform .25s;
}

.faq-cms-btn--open .faq-cms-arrow {
  transform: rotate(180deg);
  color: #2d6fdf;
}

.faq-cms-btn--open .faq-cms-q {
  color: #2d6fdf;
}

.faq-cms-answer {
  padding: 0 22px 20px;
  border-top: 1px solid #f0f3fb;
}

.faq-cms-answer p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: #444;
}

@media (max-width: 600px) {
  .faq-cms-header h2 { font-size: 1.2rem; }
  .faq-cms-btn { padding: 14px 16px; }
  .faq-cms-q { font-size: 14px; }
  .faq-cms-answer { padding: 0 16px 16px; }
}
