.site-footer {
  background-color: #10182a;
  padding: 64px 0;
  text-align: center;
}

.site-footer > * {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
  text-decoration: none;
}

.footer-logo img {
  max-height: 44px;
  width: auto;
}

.footer-nav {
  margin-bottom: 32px;
}

.footer-nav ul,
.footer-menu {
  display: flex;
  justify-content: center;
  gap: 60px;
  list-style: none;
}

.footer-nav a {
  font-family: "Syne", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #00d3f2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #1da1ff;
}

.disclaimer-text {
  font-family: "Syne", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.79;
  margin-bottom: 16px;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 23px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logos img {
  max-height: 28px;
  width: auto;
}

.footer-copyright {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

@media (max-width: 1023px) {
  .site-footer > * {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-nav ul {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0;
  }

  .site-footer > * {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-logo {
    margin-bottom: 24px;
  }

  .footer-nav {
    margin-bottom: 24px;
  }

  .footer-nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-logos {
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-logos img {
    max-height: 24px;
  }
}
