.site-footer {
  background: #0d0d0d;
}

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

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

.footer-nav .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  list-style: none;
}

.footer-nav .menu li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  transition: opacity 0.2s;
}

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

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

.disclaimer-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  color: #fff;
  max-width: 900px;
}

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

.footer-logo-item img {
  max-height: 28px;
  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;
  line-height: 16px;
}

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

  .footer-nav .menu {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .disclaimer-text {
    font-size: 11px;
  }

  .footer-logos {
    flex-wrap: wrap;
  }
}
