.site-footer {
  background: var(--footer-bg);
  padding: 40px 0 0;
  overflow: hidden;
}

.footer-logo {
  text-align: center;
  margin-bottom: 25px;
}

.footer-logo img {
  height: 68px;
  width: auto;
  margin: 0 auto;
}

.footer-divider {
  width: 1100px;
  max-width: 90%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.footer-nav {
  text-align: center;
  padding: 20px 0;
}

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

.footer-nav ul li a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
  padding: 5px 15px;
  transition: opacity 0.2s;
}

.footer-nav ul li a:hover {
  opacity: 0.8;
}

.footer-disclaimer {
  text-align: center;
  padding: 15px 0;
  max-width: 590px;
  margin: 0 auto;
}

.footer-disclaimer-title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 2;
  text-transform: uppercase;
}

.footer-disclaimer-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
  line-height: 1.8;
  margin-top: 5px;
}

.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.footer-icon {
  height: 40px;
  display: flex;
  align-items: center;
}

.footer-icon img {
  height: 100%;
  width: auto;
  max-height: 40px;
}

.footer-icon a {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-copyright {
  text-align: center;
  padding: 20px 0 30px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-nav ul {
    gap: 5px;
  }

  .footer-nav ul li a {
    font-size: 13px;
    padding: 5px 10px;
  }
}
