.site-footer {
  background: var(--color-navy);
  border-top: 1px solid var(--color-blue);
  padding: 64px 300px;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.footer-menu {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links li a {
  font-family: var(--font-orbitron);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-white);
  line-height: 24px;
  transition: opacity 0.3s;
}

.footer-links li a:hover {
  opacity: 0.7;
}

.footer-disclaimer {
  text-align: center;
}

.footer-disclaimer strong {
  font-family: var(--font-dm-sans);
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 12px;
}

.footer-disclaimer p {
  font-family: var(--font-dm-sans);
  font-size: 12px;
  line-height: 1.79;
  color: var(--color-white);
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 23px;
}

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

.footer-copyright {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 16px;
}

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

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

  .footer-links {
    gap: 16px;
    align-items: center;
  }

  .footer-disclaimer p {
    white-space: normal;
  }
}
