/* Associations Logos Section */
#associations {
    padding: 2rem 0;
    background-color: #ffffff;
}

#associations .container {
    max-width: 1200px;
}

#associations h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #04602a;
    margin-bottom: 2rem;
    text-align: center;
}

#associations img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#associations img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    #associations h3 {
        font-size: 1.5rem;
    }

    #associations img {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    #associations {
        padding: 1.5rem 0;
    }

    #associations h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    #associations img {
        max-height: 50px;
    }
}