.site-footer {
  background: #500d6b;
  border-top: 5px solid #fff66e;
  padding: 100px 24px;
  text-align: center;
}

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

.footer-logo img {
  width: auto;
}

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

.footer-nav .footer-nav-list li a {
  font-size: 16px;
  font-weight: 900;
  color: #fce046;
  text-transform: capitalize;
  transition: opacity 0.2s;
}

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

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

.disclaimer-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.disclaimer-text {
  font-size: 12px;
  color: #fff;
  line-height: 1.8;
  max-width: 700px;
}

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

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

.footer-copyright p {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

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

  .footer-nav .footer-nav-list {
    gap: 20px;
  }

  .footer-logo img {
    height: 60px;
  }
}
