.site-footer {
  background-color: #220c60;
  padding: 64px 300px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  max-height: 54px;
}

.footer-nav ul {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav ul li a {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 24px;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #a8ff00;
}

.footer-description {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  line-height: 18px;
  text-align: center;
}

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

.footer-logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: 24px;
}

@media (max-width: 1400px) {
  .site-footer {
    padding: 64px 100px 40px;
  }
}

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

  .footer-nav ul {
    gap: 24px;
  }
}

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

  .footer-nav ul {
    flex-direction: column;
    gap: 16px;
  }

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