.site-footer {
  background: #501479;
  padding: 128px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.site-footer__logo img {
  width: 127px;
  height: 149px;
  object-fit: contain;
  margin: 0 auto;
}
.site-footer__nav .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__nav .footer-menu li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  transition: opacity 0.3s;
}
.site-footer__nav .footer-menu li a:hover {
  opacity: 0.8;
}
.site-footer__copyright {
  font-size: 12px;
  font-weight: 500;
}
.site-footer__disclaimer {
  max-width: 1198px;
}
.site-footer__disclaimer p {
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  color: #fff;
}
.site-footer__logos {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.site-footer__logos img {
  max-height: 20px;
  width: auto;
}

@media (max-width: 1023px) {
  .site-footer {
    padding: 80px 40px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 20px;
    gap: 1rem;
  }
  .site-footer__logo img {
    width: 80px;
    height: auto;
  }
  .site-footer__nav .footer-menu {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .site-footer__nav .footer-menu li a {
    font-size: 14px;
  }
  .site-footer__disclaimer p {
    font-size: 10px;
  }
  .site-footer__copyright {
    font-size: 10px;
  }
}
