/* Styles existants */
.partenariats {
    margin-top: 2.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.partenariats-title {
    font-size: 0.9rem;
    color: #680;
    margin-bottom: 1rem;
}

.partenaires-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.partenaires-logos img {
    width: 70px; /* Largeur fixe */
    height: 70px; /* Hauteur fixe */
    object-fit: contain; /* Garde les proportions */
    padding: 2px; 
    background: white;
    border-radius: 50%; /* Bord arrondi */
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}

.partenaires-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    border-radius: 16px; /* Plus arrondi au survol */
    transform: scale(1.05);
}

/* Nouveau style pour le bouton partenaire */
.btn-partenaire {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #20CC5E 0%, #237640 100%);
    color: white !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-partenaire:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #9d50bb 0%, #6e48aa 100%);
}