body {
    font-family: Arial, sans-serif;
    font-size: large;
    background: linear-gradient(to bottom, #1b4332, #1b43329f);
    color: rgb(255, 255, 255);
    text-align: justify;
    line-height: 1.6;
}
header {
    background: rgba(0, 0, 0, 0.648);
    padding:20px 30px;
    display: flex;
    align-items: left;
    box-shadow: 0 2px 5px rgb(255, 255, 255);
    position: fixed;
    width: 100%;
    top: 0;
}   
.logo-header {
    width: 150px;
    height: auto;
}  
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #00bd26;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.login-box {
    background-color: #2d2d2d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 300px;
    text-align: center;
}
input {
    width: 90%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
}
button {
    background-color: #0a9396;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 15px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #005f73;
}
.vision-container {
    padding: 40px;
    background-color: #134e4a;
    text-align: center;
}
.vision-container h2 {
    margin-bottom: 20px;
}  
.bandeau {
    width: 100%; 
    height: auto; 
    min-height: 500px;
    max-height: 1000px;
    background-image: url('test 3V3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sections-part {
    text-align: justify;
    line-height: 1.5;
    font-family: ALPTOS, sans-serif;
    padding-left: 1.5cm;
    padding-right: 1.5cm;
}
.section-title {
 font-family: Alptos, sans-serif; 
 color: #00bd26;
}
@media (max-width: 768px) {
    .logo-header img {
        max-width: 100px; /* Réduire la taille du logo sur les petits écrans */
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    nav ul li {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .logo-header img {
        max-width: 80px; /* Réduire encore plus la taille du logo sur les très petits écrans */
    }
    nav ul {
        flex-direction: column;
        gap: 5px;
    }
    nav ul li {
        text-align: center;
    }
}
/* Styles pour le menu déroulant */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    padding: 10px;
}
.menu-toggle:hover {
    padding: 2px; /* Réduire la taille du carré de couleur */
    margin: 2px; /* Ajuster la marge pour réduire l'espace */
    background-color: #00bd26; /* Ajouter une couleur de fond pour le survol */
    border-radius: 5px; /* Ajouter des coins arrondis */
}
@media (max-width: 600px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 105px;
        left: 0;
        width: 100%;
        padding: 20px;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        text-align: center;
    }
}
/* Styles pour la section des cases à cocher */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    column-count: 2; /* Nombre de colonnes */
    column-gap: 20px; /* Espacement entre les colonnes */
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    break-inside: avoid; /* Éviter les coupures de labels entre les colonnes */
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
}