.footer-logo-wrapper {
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-logos img {
  max-width: 120px;
  height: auto;
  opacity: 0.9;
  transition: 0.3s ease;
}

.footer-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .footer-logos img {
    max-width: 80px;
  }
}
