.central-help-page {
  background: #f3f1ee;
  padding: 42px 0 24px;
}

.central-help-page__container {
  width: min(1260px, calc(100vw - 40px));
}

.central-help-page__top {
  margin-bottom: 26px;
}

.central-help-page__title {
  margin: 0;
  color: #0a2438;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.6vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.central-help-page__line {
  width: min(430px, 100%);
  height: 3px;
  background: #c89a3d;
  margin-top: 18px;
}

.central-help-page__layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.central-help-sidebar {
  position: sticky;
  top: 110px;
}

.central-help-sidebar__title {
  margin: 0 0 18px;
  color: #0a2438;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  line-height: 1;
}

.central-help-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.central-help-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #183246;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  transition: transform 0.18s ease, color 0.18s ease;
}

.central-help-sidebar__link:hover {
  color: #0b4a73;
  transform: translateX(3px);
}

.central-help-sidebar__link img {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  object-fit: contain;
  display: block;
}

.central-help-content {
  min-width: 0;
}

.faq-category {
  margin-bottom: 34px;
  scroll-margin-top: 110px;
}

.faq-category__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.faq-category__header img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
  display: block;
}

.faq-category__header h2 {
  margin: 0;
  color: #0a2438;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.faq-subgroup {
  margin-top: 24px;
}

.faq-subgroup + .faq-subgroup {
  margin-top: 28px;
}

.faq-subgroup__title {
  margin: 0 0 12px;
  color: #0a2438;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-question {
  width: 100%;
  min-height: 44px;
  border: 1.6px solid #0b4a73;
  border-radius: 10px;
  background: #fff;
  color: #0b4a73;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: box-shadow 0.22s ease;
}

.faq-question:hover {
  box-shadow: 0 8px 22px rgba(10, 63, 99, 0.1);
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 15px;
  color: #c89a3d;
  transition: transform 0.28s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.38s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.24s ease;
}

.faq-answer__inner {
  padding: 12px 8px 2px 16px;
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-item.is-open .faq-answer__inner {
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
  color: #425160;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-disclaimer a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  color: inherit;
}

.contact-disclaimer a:hover {
  color: #c89a3d;
}

@media (max-width: 980px) {
  .central-help-page__container {
    width: calc(100vw - 22px);
  }

  .central-help-page__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .central-help-sidebar {
    position: static;
    top: auto;
  }

  .faq-category {
    scroll-margin-top: 92px;
  }
}

@media (max-width: 820px) {
  .central-help-page {
    padding: 30px 0 16px;
  }

  .central-help-page__title {
    font-size: clamp(2.5rem, 10vw, 3.6rem);
  }

  .central-help-page__line {
    width: 150px;
    margin-top: 14px;
  }

  .central-help-sidebar__title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .central-help-sidebar__link {
    font-size: 0.98rem;
  }

  .faq-category__header img {
    width: 42px !important;
    height: 42px !important;
  }

  .faq-category__header h2 {
    font-size: clamp(1.8rem, 7.4vw, 2.35rem);
  }

  .faq-question {
    min-height: 48px;
    font-size: 0.97rem;
    padding: 10px 14px;
  }

  .faq-answer__inner {
    padding-left: 8px;
  }

  .faq-answer p {
    font-size: 0.98rem;
    line-height: 1.42;
  }
}
