.faq-page { min-width: 0; }
.faq-list { padding: 0; overflow: hidden; }
.faq-item { border-bottom: 1px solid #d9e3ee; background: #fff; }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 18px;
  color: #162b49;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; line-height: 1; text-align: center; color: #3669a8; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: #f5f8fc; }
.faq-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f2ff;
  color: #1555a2;
  font-size: 13px;
  font-weight: 800;
}
.faq-item summary strong { min-width: 0; font-size: 16px; line-height: 1.45; word-break: keep-all; overflow-wrap: anywhere; }
.faq-answer { padding: 0 66px 20px 74px; color: #4e5f75; font-size: 15px; line-height: 1.7; }
.faq-answer p { margin: 0 0 9px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px 24px; margin: 8px 0 12px; padding-left: 20px; }
.faq-answer li { padding-left: 2px; }

@media (max-width: 760px) {
  .faq-item summary { grid-template-columns: 36px minmax(0, 1fr) 20px; gap: 9px; min-height: 60px; padding: 10px 12px; }
  .faq-number { width: 32px; height: 32px; font-size: 12px; }
  .faq-item summary strong { font-size: 15px; }
  .faq-answer { padding: 0 42px 18px 57px; font-size: 14px; }
  .faq-answer ul { grid-template-columns: 1fr; gap: 4px; }
}
