.site-footer {
  background-color: #0d1c33;
  padding: 140px 0;
}

.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Logo */
.footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer__logo-img {
  max-height: 50px;
  object-fit: contain;
}

/* Nav */
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.footer__menu li a {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  color: #35f0ec;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__menu li a:hover {
  opacity: 0.7;
}

/* Disclaimer */
.footer__disclaimer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 860px;
  width: 100%;
}

.footer__disclaimer-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  margin: 0;
  text-align: center;
}
.footer__disclaimer-text h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 2;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Footer logos */
.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px;
}

.footer__logos-link {
  display: inline-flex;
  align-items: center;
}

.footer__logos-img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

/* Copyright */
.footer__copyright {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 80px 0;
  }

  .footer__menu {
    gap: 20px;
  }

  .footer__logos {
    gap: 16px;
  }
}
