.site-footer {
  background: var(--bg-dark);
  padding: 100px 40px;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links li a {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: var(--purple-text);
}

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

.footer-disclaimer h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-disclaimer p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.79;
}

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

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

.footer-copyright {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
}

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

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

  .footer-links {
    gap: 1rem;
    align-items: center;
  }

  .footer-inner {
    gap: 24px;
  }
}
