.vm-qa-hero {
  position: relative;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.vm-qa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 48, 96, 0.8) 5%, rgba(0, 48, 96, 0) 100%);
  z-index: 1;
}
.vm-qa-hero__overlay {
  display: none;
}
.vm-qa-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  align-self: end;
  padding: 30px 0;
}
.vm-qa-hero__title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vm-breadcrumb {
  font-size: 16px;
  font-weight: 500px;
}

.vm-breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}

.vm-breadcrumb__item {
  display: flex;
  align-items: center;
}
.vm-breadcrumb__item::after {
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}
.vm-breadcrumb__item:last-child::after {
  display: none;
}
.vm-breadcrumb__item--active {
  color: #fff;
}

.vm-breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-right: 8px;
}
.vm-breadcrumb__link:hover {
  color: #EB0738;
}

.vm-qa-main {
  padding: 48px 0 64px;
  background: #fff;
}

.vm-qa-layout {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 48px;
  align-items: start;
}

.vm-qa-sidebar {
  position: sticky;
  top: 24px;
}
.vm-qa-sidebar .widget-top {
  position: relative;
  background: #EB0738;
  border-radius: 30px 8px 30px 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.vm-qa-sidebar .widget-top .bgr-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
  z-index: 0;
  display: block;
}
.vm-qa-sidebar .vm-qa-widget__title {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 14px 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.vm-qa-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: none;
}
.vm-qa-sidebar__item {
  border-bottom: 1px solid rgba(7, 52, 89, 0.08);
}
.vm-qa-sidebar__item:last-child {
  border-bottom: none;
}
.vm-qa-sidebar__item.is-active > .vm-qa-sidebar__toggle {
  font-weight: 700;
}
.vm-qa-sidebar__item.has-children > .vm-qa-sidebar__toggle {
  cursor: pointer;
}
.vm-qa-sidebar__item.is-expanded > .vm-qa-sidebar__toggle .vm-qa-sidebar__toggle-icon {
  transform: rotate(180deg);
}
.vm-qa-sidebar__toggle {
  width: 100%;
  padding: 16px 0px;
  color: #001f3d;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  background: transparent;
  border: none;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.vm-qa-sidebar__toggle-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001F3D;
  transition: color 0.2s ease, transform 0.3s ease;
}
.vm-qa-sidebar__label {
  flex: 1;
}
.vm-qa-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #001F3D;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.vm-qa-sidebar__link:hover {
  color: #EB0738;
  background: rgba(235, 7, 56, 0.03);
}
.vm-qa-sidebar__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001F3D;
  transition: color 0.2s ease;
}
.vm-qa-sidebar__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.vm-qa-sidebar__sublist.is-open {
  max-height: 1000px;
  padding: 0 24px 16px 24px;
}
.vm-qa-sidebar__subitem.is-active > .vm-qa-sidebar__sublink {
  color: #EB0738;
  font-weight: 600;
}
.vm-qa-sidebar__subitem.is-active > .vm-qa-sidebar__sublink svg {
  stroke: #EB0738;
}
.vm-qa-sidebar__sublink {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #001F3D;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.vm-qa-sidebar__sublink svg {
  flex-shrink: 0;
  color: currentColor;
  transition: stroke 0.2s ease;
}
.vm-qa-sidebar__sublink:hover {
  color: #EB0738;
}
.vm-qa-sidebar__sublink:hover svg {
  stroke: #EB0738;
}

.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  overflow-y: auto;
  height: 450px;
  padding-right: 10px;
}
.faq-list::-webkit-scrollbar {
  height: 100%;
  width: 5px;
  margin-top: 5px;
}
.faq-list::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 4px;
}
.faq-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #eb0738;
}
.faq-list::-webkit-scrollbar-thumb:hover {
  background: #eb0738;
}

.faq-item {
  transition: all 0.3s ease;
  border-bottom: solid 1px #fff;
  border-radius: 8px;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item__button {
  width: 100%;
  padding: 24px;
  border-radius: 8px 8px 0 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #001f3d;
  text-align: left;
  transition: all 0.3s ease;
}
.faq-item__button[aria-expanded=true] {
  background: #fff;
  border-top: solid 2px #001f3d;
}
.faq-item__button[aria-expanded=true] .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__button[aria-expanded=true] .faq-item__icon svg {
  color: #eb0738;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #073459;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item__icon svg {
  width: 100%;
  height: 100%;
  transition: color 0.3s ease;
}
.faq-item__title {
  flex: 1;
  margin: 0;
  line-height: 1.4;
}
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.faq-item__content.is-open {
  opacity: 1;
}
.faq-item__content-inner {
  padding: 0 24px 20px 24px;
  font-size: 16px;
  line-height: 2.4;
  color: #001f3d;
  background: #fff;
  border-radius: 0 0 8px 8px;
}
.faq-item__content-inner p {
  margin: 0 0 12px 0;
}
.faq-item__content-inner p:last-child {
  margin-bottom: 0;
}
.faq-item__content-inner ul,
.faq-item__content-inner ol {
  padding-left: 20px;
  margin: 12px 0;
}
.faq-item__content-inner ul li,
.faq-item__content-inner ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.faq-item__content-inner ul li:last-child,
.faq-item__content-inner ol li:last-child {
  margin-bottom: 0;
}
.faq-item__content-inner strong {
  color: #001f3d;
  font-weight: 600;
}

.faq-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(20, 20, 43, 0.12);
}
.faq-image img {
  width: 100%;
  height: auto;
}

.faq-text {
  font-size: 16px;
  line-height: 1.4;
  color: #141414;
  border-radius: 12px;
}
.faq-text p {
  margin: 0 0 12px 0;
}
.faq-text p:last-child {
  margin-bottom: 0;
}
.faq-text strong {
  color: #eb0738;
  font-weight: 600;
}
.faq-text em {
  color: #073459;
}

.faq-list--qa {
  height: auto;
  max-height: none;
  overflow-y: visible;
  padding-right: 0;
  margin-top: 0;
}
.faq-list--qa .faq-item__button {
  background: #fff;
}
.faq-list--qa .faq-item__button[aria-expanded=true] {
  background: #fff;
  border-top-color: #001F3D;
}
.faq-list--qa .faq-item__content {
  background: #fff;
}
.faq-list--qa .faq-item__content-inner {
  border-top: none;
}
.faq-list--qa .faq-item {
  border-bottom-color: rgba(7, 52, 89, 0.1);
}

.vm-qa-empty {
  color: #999;
  font-size: 15px;
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .vm-qa-layout {
    grid-template-columns: 240px 1fr;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .vm-qa-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vm-qa-sidebar {
    position: static;
  }
  .vm-qa-hero__title {
    font-size: 28px;
  }
  .vm-qa-hero {
    min-height: 240px;
    padding: 0;
  }
  .vm-qa-hero__title {
    font-size: 20px;
  }
  .vm-qa-hero__content {
    gap: 5px;
    flex-direction: column;
    padding: 20px 15px;
    align-items: flex-start;
  }
  .vm-breadcrumb__list {
    font-size: 12px;
    gap: 8px;
  }
  .vm-breadcrumb__item::after {
    margin-left: 8px;
  }
  .vm-qa-sidebar .vm-qa-widget__title {
    font-size: 15px;
  }
  .vm-qa-sidebar__toggle {
    font-size: 16px;
  }
  .vm-qa-sidebar__sublink {
    font-size: 14px;
  }
  .faq-item__button {
    padding: 16px;
    font-size: 15px;
  }
  .faq-item__content-inner {
    padding: 0 16px 20px 16px;
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .vm-qa-main {
    padding: 30px 0;
  }
  .vm-qa-hero__title {
    font-size: 22px;
  }
}/*# sourceMappingURL=qa.css.map */