.footer {
  background-color: white;
  padding: 2rem 0;
  border-top: 1px solid #eee;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-copyright {
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

.footer-copyright a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #0f085a;
}

.footer-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-realization {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-support h3 {
  margin-bottom: 1rem;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.support-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}

.support-logos img {
  margin: 0;
  max-height: 80px;
  max-width: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.support-logos img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .footer-content {
    gap: 1rem;
  }

  .support-logos {
    width: 100%;
    flex-wrap: wrap;
  }
}
