/* Styles pour la section des partenaires */
.partners-section {
  padding: 3rem 0;
}

.partner-logo {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.partner-logo img {
  max-height: 100px;
  max-width: 100%;
  padding: 10px;
}

@media (max-width: 767px) {
  .partner-logo {
    height: 120px;
    margin-bottom: 20px;
  }
  
  .partner-logo img {
    max-height: 80px;
  }
}
