/* Modernisation Layout */
.centered-text {
    text-align: center;
    margin: 0 auto;
}

.equipe-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.equipe-column {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 10px;
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
    .equipe-grid {
        flex-direction: column;
    }
}

/* Classe pour cacher du texte visuellement mais le garder pour les lecteurs d'écran */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Bannière Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 0 10px 0;
    padding-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #45a049;
}

.cookie-btn.refuse {
    background-color: #f44336;
    color: white;
}

.cookie-btn.refuse:hover {
    background-color: #d32f2f;
}

@media (min-width: 768px) {
    .cookie-content p {
        margin: 0;
    }
}

/* Centrage des conteneurs de la page d'accueil */
.conteneurs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.conteneurs-grid .conteneur {
    float: none; /* Annule le float: left */
}