body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Styles pour la barre latérale */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 200px;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    background-color: #87CEFA; /* SkyBlue color */
    border-bottom: 1px solid #eee;
}

.sidebar a:hover {
    background-color: #1E90FF; /* DodgerBlue color */
}

/* Styles pour le formulaire */

.form-container {
    margin: 50px auto;
    width: 80%;
    max-width: 400px;
    padding: 20px;
    border: 2px solid blue;
    border-radius: 10px;
    background-color: white;
}

form input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 2mm solid black;
    border-radius: 4px;
    background-color: white;
    box-sizing: border-box;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: blue;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: darkblue;
}
.site-logo {
    width: 40%;      /* Largeur définie à 60% pour laisser une marge de 20% de chaque côté */
    height: auto;    /* Permet de conserver les proportions de l'image */
    display: block;  /* Pour que les marges s'appliquent correctement */
    margin-left: 35%;
    margin-right: 40%;
}
/* Media Queries pour iPhone X */
@media screen and (min-width: 375px) and (max-width: 376px) and (min-height: 812px) and (max-height: 813px) {
}

/* CSS pour des écrans avec une résolution de 1920x1080 */
@media screen and (width: 1920px) and (height: 1080px) {
    /* Vos styles ici */
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.video-container iframe {
    width: 100%;
    max-width: 636px;
    height: 357px;
}
.presentation-text {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto;
}

.presentation-text h2 {
    color: #1E90FF; /* Couleur DodgerBlue */
    border-bottom: 2px solid #87CEFA; /* Couleur SkyBlue */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.presentation-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.presentation-text p:last-child {
    margin-bottom: 0;
}
.dots-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;  /* Assurez-vous qu'il apparaît au-dessus d'autres éléments */
}

.dot {
    background-color: #333;  /* Couleur du point */
    height: 5px;
    width: 5px;
    border-radius: 50%;  /* Rend le point circulaire */
    transition: 0.4s;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -200px;  /* Commencez caché à droite */
    height: 100%;
    width: 200px;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.sidebar.open {
    right: 0;
}





