.mon-bloc-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #222 !important;
    color: #fff !important;
    text-align: center;
    padding: 10px;
}

a {
    text-decoration: none !important;
    color: #fff !important; /* Ajouté pour éviter que le lien reste bleu */
}

.legals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .copyright {
        flex-direction: row;
        gap: 0.5rem; /* Optionnel : pour espacer le copyright sur grand écran */
    }
}


