.faq-page {
  display: block !important;
  grid-template-columns: none !important;
  padding-bottom: 104px;
}

.faq__left { display: none !important; }
.faq__right { padding-top: 0 !important; }

.faq__title {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0d2640;
  margin: 0 0 32px;
}

.faq__acc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: none !important;
}

.faq__row {
  background: #ffffff;
  border: 1px solid rgba(13,38,64,.07) !important;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 180ms ease;
}

.faq__row:hover {
  box-shadow: 0 4px 20px rgba(13,38,64,.06);
}

.faq__q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: #0d2640;
}

.faq__q:focus-visible {
  outline: 2px solid #6aa3d4;
  outline-offset: -2px;
  border-radius: 18px;
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #0d2640;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform .22s ease;
}

.faq__icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq__q[aria-expanded="true"] .faq__icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.faq__q[aria-expanded="true"] .faq__icon::after {
  transform: translateY(-50%) rotate(135deg);
}

.faq__a {
  overflow: hidden;
}

.faq__ainner {
  padding: 0 24px 22px;
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #1a3050;
}

.faq__ainner p {
  margin: 0 0 12px;
}

.faq__ainner p:last-child {
  margin: 0;
}

.faq__cta { display: none; }

@media (max-width: 640px) {
  .faq-page {
    padding-bottom: 48px;
  }

  .faq__title {
    font-size: clamp(28px, 8vw, 38px);
    margin-bottom: 24px;
  }

  .faq__acc {
    gap: 10px;
  }

  .faq__row {
    border-radius: 14px;
  }

  .faq__q {
    padding: 18px 18px;
    font-size: 17px;
  }

  .faq__ainner {
    padding: 0 18px 18px;
    font-size: 14px;
  }
}