*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
i,
ol,
ul,
li,
form,
label,
main,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  scroll-behavior: smooth;
}

footer,
header,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

a {
  text-decoration: none;
}

button {
  border: transparent;
  cursor: pointer;
}

html {
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
}

body {
  font-size: 16px;
  background-color: #f9f9f9;
  line-height: 1.4;
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 82rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}

.content {
  flex: 75%;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #000000;
}
.checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.2rem;
  background-color: #147dc2;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox input[type=checkbox]:checked {
  background-image: url("../img/icons/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
}
.checkbox label {
  line-height: 1.4;
  cursor: pointer;
}

.notice-bar {
  background: linear-gradient(90deg, #f7fafd 0%, #e3f0ff 100%);
  color: #1a2a3a;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 15px;
  padding: 18px 0;
  border-bottom: 2px solid #b3d4fc;
}
.notice-bar__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.notice-bar__lead {
  font-weight: 600;
  color: #0b3a6a;
  margin: 0;
}
.notice-bar__disclosure-btn {
  background: #1564bf;
  color: #fff;
  border-radius: 4px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin: 0 0 0 8px;
  border: none;
  transition: background 0.2s;
}
.notice-bar__disclosure-btn:hover {
  background: #0b3a6a;
}
.notice-bar__desc {
  font-size: 13px;
  color: #3a4a5a;
  margin: 0;
}
.notice-bar__link {
  color: #1564bf;
  text-decoration: underline;
}
.notice-bar__link:hover {
  color: #0b3a6a;
}

@media (max-width: 767px) {
  .notice-bar {
    display: none;
    font-size: 13px;
    padding: 12px 0;
  }
  .notice-bar__content {
    gap: 6px;
  }
  .notice-bar__lead {
    font-size: 14px;
  }
}
.disclaimer-block {
  background: #f7fafd;
  border-bottom: 1px solid #e3f0ff;
  padding: 10px 0;
}
.disclaimer-block__content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3a4a5a;
}
.disclaimer-block__icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer-block__text {
  line-height: 1.5;
}
.disclaimer-block__text a {
  color: #1564bf;
  text-decoration: underline;
}
.disclaimer-block__text a:hover {
  color: #0b3a6a;
}

.burger {
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
  display: none;
  background-color: transparent;
}
@media (max-width: 767.98px) {
  .burger {
    display: block;
  }
}
.burger__line {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 6px;
  background-color: #1564bf;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.burger__line:nth-of-type(2) {
  top: calc(50% - 9px);
}
.burger__line:nth-of-type(3) {
  top: calc(50% + 9px);
}
.burger.active .burger__line:nth-of-type(1) {
  display: none;
}
.burger.active .burger__line:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}
.burger.active .burger__line:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.site-header {
  background: #f5f8fa;
  border-bottom: 2px solid #e3f0ff;
  padding: 0;
}
.site-header__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo {
  height: 38px;
  width: auto;
  display: block;
}
.site-header__nav {
  display: flex;
  gap: 32px;
}

.main-nav__link {
  color: #1564bf;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}
.main-nav__link:hover {
  color: #0b3a6a;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-header__nav {
    gap: 18px;
  }
  .main-nav__link {
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  .site-header__nav {
    display: none;
  }
  .site-header__burger {
    display: flex;
  }
}
.site-header__burger.active span {
  background: #0b3a6a;
}

.site-header__nav.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100vw;
  background: #f5f8fa;
  box-shadow: 0 8px 32px rgba(21, 100, 191, 0.08);
  padding: 32px 0 24px 0;
  gap: 24px;
  z-index: 100;
  align-items: flex-end;
  animation: slideDown 0.25s;
}

.custom-nav.site-header__nav.active {
  top: 70px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.nav-open {
  overflow: hidden;
}

.intro-hero {
  background: linear-gradient(100deg, #e3f0ff 0%, #f7fafd 100%);
  padding: 40px 0 24px 0;
}
.intro-hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.intro-hero__content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro-hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1564bf;
  font-weight: 600;
}
.intro-hero__title {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #1a2a3a;
  margin: 0;
  line-height: 1.15;
}
.intro-hero__title span {
  color: #1564bf;
}
.intro-hero__subtitle {
  font-size: 1rem;
  color: #3a4a5a;
  margin: 0;
  font-weight: 500;
}
.intro-hero__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.intro-hero__benefits li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
  color: #1564bf;
  font-weight: 600;
}
.intro-hero__benefits li img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.intro-hero__cta {
  display: inline-block;
  max-width: -moz-max-content;
  max-width: max-content;
  background: #1564bf;
  color: #fff;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 6px;
}
.intro-hero__cta:hover {
  background: #0b3a6a;
}
.intro-hero__visual {
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-hero__visual img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(21, 100, 191, 0.08);
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 1200px) {
  .platforms-list__link {
    flex-wrap: wrap;
  }
  .platforms-list__cta {
    margin: 0 auto !important;
  }
  .platforms-list__info {
    width: 50%;
  }
}
@media (max-width: 900px) {
  .intro-hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .intro-hero {
    padding: 24px 0 10px 0;
  }
  .intro-hero__content {
    max-width: 100%;
    gap: 14px;
  }
  .intro-hero__title {
    font-size: 1.3rem;
  }
  .intro-hero__visual img {
    max-width: 100%;
  }
}
.intro-hero__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #1564bf;
  font-weight: 500;
}
.intro-hero__badge img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.platforms-list {
  margin: 40px 0 32px 0;
}
.platforms-list__title {
  font-size: 2rem;
  font-weight: 800;
  color: #1564bf;
  margin-bottom: 24px;
}
.platforms-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.platforms-list__item {
  background: #f7fafd;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(21, 100, 191, 0.06);
  display: flex;
  align-items: center;
  padding: 18px 24px;
  gap: 18px;
  transition: box-shadow 0.2s;
}
.platforms-list__item:hover {
  box-shadow: 0 4px 24px rgba(21, 100, 191, 0.13);
}
.platforms-list__link {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-decoration: none;
}
.platforms-list__rank {
  font-size: 1.2rem;
  font-weight: 700;
  color: #16ca92;
  min-width: 38px;
  text-align: center;
}
.platforms-list__logo {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(21, 100, 191, 0.07);
}
.platforms-list__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.platforms-list__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0;
}
.platforms-list__score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  color: #1564bf;
  font-weight: 700;
}
.platforms-list__score-num {
  font-size: 1.1rem;
  font-weight: 700;
}
.platforms-list__score img {
  width: 60px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.platforms-list__features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.97rem;
  color: #3a4a5a;
}
.platforms-list__features li {
  margin-bottom: 2px;
}
.platforms-list__features li:last-child {
  margin-bottom: 0;
}
.platforms-list__badge {
  display: inline-block;
  background: #16ca92;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 10px;
  margin-top: 4px;
}
.platforms-list__cta {
  flex-shrink: 0;
  background: #1564bf;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  margin-left: 12px;
  transition: background 0.2s;
}
.platforms-list__cta:hover {
  background: #0b3a6a;
}

@media (max-width: 900px) {
  .platforms-list__items {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .platforms-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 12px;
  }
  .platforms-list__link {
    flex-direction: column;
  }
  .platforms-list__info {
    width: 100%;
    text-align: center;
  }
  .platforms-list__score {
    justify-content: center;
  }
}
.featured-platform {
  background: #f7fafd;
  padding: 36px 0 28px 0;
  margin-bottom: 32px;
}
.featured-platform__title {
  font-size: 2rem;
  font-weight: 800;
  color: #1564bf;
  margin-bottom: 24px;
  text-align: center;
}
.featured-platform__card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(21, 100, 191, 0.07);
  padding: 32px 28px;
  justify-content: space-between;
}
.featured-platform__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}
.featured-platform__logo {
  width: 96px;
  height: 96px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  background: #f7fafd;
  box-shadow: 0 1px 4px rgba(21, 100, 191, 0.07);
}
.featured-platform__badge {
  display: inline-block;
  background: #16ca92;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 3px 14px;
  margin-top: 4px;
}
.featured-platform__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featured-platform__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0;
}
.featured-platform__score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: #1564bf;
  font-weight: 700;
}
.featured-platform__score-num {
  font-size: 1.2rem;
  font-weight: 700;
}
.featured-platform__score-label {
  font-size: 0.95rem;
  color: #3a4a5a;
  margin-left: 6px;
  font-weight: 500;
}
.featured-platform__score img {
  width: 60px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.featured-platform__features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #3a4a5a;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.featured-platform__features li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.featured-platform__features li img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.featured-platform__cta {
  display: inline-block;
  max-width: -moz-max-content;
  max-width: max-content;
  background: #1564bf;
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 8px;
}
.featured-platform__cta:hover {
  background: #0b3a6a;
}
.featured-platform__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  margin-left: 24px;
}
.featured-platform__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: #1564bf;
  background: #e3f0ff;
  border-radius: 6px;
  padding: 7px 12px;
}
.featured-platform__stat svg {
  flex-shrink: 0;
}
.featured-platform__stat span {
  font-weight: 500;
}

@media (max-width: 900px) {
  .featured-platform__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 20px 10px;
  }
  .featured-platform__meta {
    margin-left: 0;
    min-width: 0;
  }
  .featured-platform__info {
    flex: auto;
  }
}
.faq {
  padding: 2rem 0;
}
.faq__title {
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.faq__text {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.accordion {
  width: 100%;
}
.accordion__item:not(:last-child) {
  margin-bottom: 1rem;
}
.accordion__header {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f9f9f9;
  border-bottom: 1px solid #bdbdbd;
  color: #000000;
  box-shadow: none;
  padding: 0.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}
.accordion__header span {
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .accordion__header {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .accordion__header {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .accordion__header:hover {
    cursor: pointer;
  }
}
.accordion__content {
  overflow: hidden;
  padding: 0 1rem;
  font-size: 0.8rem;
  max-height: 0;
  transition: max-height 0.3s ease;
  background-color: transparent;
}
.accordion__content p {
  margin: 1rem 0;
}
.accordion__icon {
  width: 0.6rem;
  height: 0.6rem;
  transition: transform 0.3s ease;
  margin-left: auto;
}
.accordion__img {
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.active .accordion__icon {
  transform: rotate(180deg);
}

.investment-guide {
  max-width: 80%;
  padding: 3.5rem 0;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .investment-guide {
    padding: 1.5rem 0;
    max-width: 95%;
  }
}
.investment-guide__heading {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 1.2rem;
  color: #1564bf;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .investment-guide__heading {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .investment-guide__heading {
    font-size: 1rem;
  }
}
.investment-guide__list {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  list-style-type: disc;
}
.investment-guide__list li {
  margin-bottom: 0.5rem;
}
.investment-guide__content {
  line-height: 1.6;
}
.investment-guide__content:not(:last-child) {
  margin-bottom: 1.2rem;
}

.terms {
  padding: 4rem 0;
}
@media (max-width: 767.98px) {
  .terms {
    padding: 2rem 0;
  }
}
.terms__title {
  position: relative;
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 4rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .terms__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .terms__title {
    font-size: 1.5rem;
  }
}
.terms__title::before {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 10rem;
  height: 1px;
  background-color: #bdbdbd;
}
.terms span {
  display: block;
}
.terms span:not(:last-child) {
  margin-bottom: 1rem;
}
.terms__text:not(:last-child) {
  margin-bottom: 1rem;
}
.terms__link {
  word-break: break-all;
  color: #147dc2;
  transition: color 0.4s ease-in-out;
}
@media (hover: hover) {
  .terms__link:hover {
    color: #0c4b75;
  }
}

.policy {
  max-width: 80%;
  padding: 4rem 0;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .policy {
    max-width: 100%;
    padding: 2rem 0;
  }
}
.policy__title {
  position: relative;
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 4rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .policy__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .policy__title {
    font-size: 1.5rem;
  }
}
.policy__title::before {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 10rem;
  height: 1px;
  background-color: #bdbdbd;
}
.policy span {
  display: block;
}
.policy span:not(:last-child) {
  margin-bottom: 1rem;
}
.policy__date {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .policy__date {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .policy__date {
    font-size: 1rem;
  }
}
.policy__suptitle {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .policy__suptitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .policy__suptitle {
    font-size: 1rem;
  }
}
.policy__list {
  margin-bottom: 1rem;
}
.policy__list li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.policy__text:not(:last-child) {
  margin-bottom: 1rem;
}
.policy__link {
  word-break: break-all;
  color: #147dc2;
  transition: color 0.4s ease-in-out;
}
@media (hover: hover) {
  .policy__link:hover {
    color: #0c4b75;
  }
}

.cookie {
  max-width: 80%;
  padding: 4rem 0;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .cookie {
    max-width: 100%;
    padding: 2rem 0;
  }
}
.cookie__title {
  position: relative;
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 4rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .cookie__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .cookie__title {
    font-size: 1.5rem;
  }
}
.cookie__title::before {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 10rem;
  height: 1px;
  background-color: #bdbdbd;
}
.cookie span {
  display: block;
}
.cookie span:not(:last-child) {
  margin-bottom: 1rem;
}
.cookie__list {
  margin-bottom: 1rem;
}
.cookie__list li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.cookie__text:not(:last-child) {
  margin-bottom: 1rem;
}
.cookie__subtitle {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .cookie__subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .cookie__subtitle {
    font-size: 1rem;
  }
}
.cookie__subtitle:not(:last-child) {
  margin-bottom: 1rem;
}
.cookie__link {
  word-break: break-all;
  color: #147dc2;
  transition: color 0.4s ease-in-out;
}
@media (hover: hover) {
  .cookie__link:hover {
    color: #0c4b75;
  }
}

.disclaimer {
  max-width: 80%;
  padding: 4rem 0;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .disclaimer {
    max-width: 100%;
    padding: 2rem 0;
  }
}
.disclaimer__title {
  position: relative;
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 4rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .disclaimer__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .disclaimer__title {
    font-size: 1.5rem;
  }
}
.disclaimer__title::before {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 10rem;
  height: 1px;
  background-color: #bdbdbd;
}
.disclaimer__text:not(:last-child) {
  margin-bottom: 1rem;
}
.disclaimer__link {
  word-break: break-all;
  color: #147dc2;
  transition: color 0.4s ease-in-out;
}
@media (hover: hover) {
  .disclaimer__link:hover {
    color: #0c4b75;
  }
}

.about {
  padding: 4rem 0;
}
@media (max-width: 767.98px) {
  .about {
    padding: 2rem 0;
  }
}
.about__title {
  position: relative;
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 4rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .about__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .about__title {
    font-size: 1.5rem;
  }
}
.about__title::before {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 10rem;
  height: 1px;
  background-color: #bdbdbd;
}
.about span {
  display: block;
}
.about span:not(:last-child) {
  margin-bottom: 1rem;
}
.about__text:not(:last-child) {
  margin-bottom: 1rem;
}
.about__link {
  word-break: break-all;
  color: #147dc2;
  transition: color 0.4s ease-in-out;
}
@media (hover: hover) {
  .about__link:hover {
    color: #0c4b75;
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #000;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: background-color 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .scroll-top:hover {
    background-color: #147dc2;
  }
}

.scroll-top img {
  width: 1rem;
  height: 1rem;
  line-height: 0;
  transform: rotateX(180deg);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.site-basement {
  padding: 3rem 0;
  background: linear-gradient(100deg, #e3f0ff 0%, #f7fafd 100%);
}
@media (max-width: 767.98px) {
  .site-basement {
    padding: 2rem 0;
  }
}
.site-basement__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .site-basement__grid {
    gap: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .site-basement__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.site-basement__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-basement__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.site-basement__logo {
  display: inline-block;
  max-width: 100px;
}
.site-basement__logo .logo__image {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .site-basement__logo .logo__image:hover {
    opacity: 0.9;
  }
}
.site-basement__copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.site-basement__legal {
  font-size: 0.85rem;
  line-height: 1.5;
}
.site-basement__legal a {
  font-weight: 500;
  text-decoration: none;
  color: #1564bf;
}
@media (hover: hover) {
  .site-basement__legal a:hover {
    text-decoration: underline;
  }
}
.site-basement__nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .site-basement__nav {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.site-basement__nav a {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: #1564bf;
}
@media (hover: hover) {
  .site-basement__nav a:hover {
    text-decoration: underline;
  }
}
.site-basement__description {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
}
.site-basement__description:not(:last-child) {
  margin-bottom: 1rem;
}
.site-basement__description a {
  text-decoration: none;
}
@media (hover: hover) {
  .site-basement__description a:hover {
    text-decoration: underline;
  }
}
.site-basement__ad-disclosure {
  position: relative;
}
.site-basement__ad-disclosure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 2px;
}
.site-basement__ad-disclosure h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.site-basement__ad-disclosure p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
}
.site-basement__ad-disclosure p a {
  text-decoration: none;
  color: #1564bf;
}
@media (hover: hover) {
  .site-basement__ad-disclosure p a:hover {
    text-decoration: underline;
  }
}/*# sourceMappingURL=style.css.map */