.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-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-social {
  display: flex;
      justify-content: left;
      gap: 3.5rem;
      margin-bottom: 0.5rem;
      padding-top: 10px;
}

.footer-social .social-icon {
  color:#0f085a;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social .social-icon:hover {
  color: rgb(20, 90, 180);
}

.footer-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.footer-menu a {
  text-decoration: none;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.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, 
.footer-support-section {
  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: 2rem;
  justify-content: center;
  align-items: center;
}

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

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

.footer-divider {
  width: 80%;
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-content {
    gap: 1rem; 
  }
.support-logos{
  width: 100%;

  flex-wrap: wrap;
 
  }
}