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

header {
    text-align: center;
    padding: 25px 20px;
    background-color: #00a2ff; /* Couleur de fond de l'en-tête */
    color: white;
}

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

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #0073b1;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #005a8e;
    color: white;
}


.about {
    display: flex;
    align-items: center;
    padding: 50px 20px;
    background-color: white;
    max-width: 1000px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.about img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-right: 30px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
}

.image-container {
    display: flex;
    flex-wrap: wrap; /* Pour que les images se placent sur plusieurs lignes si nécessaire */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Espace entre les images */
    padding: 20px;
    background-color: #f0f0f0;
}

.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px; /* Largeur fixe pour toutes les images */
    text-align: center;
}

.image-caption {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.square-image {
    width: 100px; /* Taille uniforme pour toutes les images */
    height: 100px;
    object-fit: cover; /* Ajuste l'image pour qu'elle remplisse l'espace sans déformation */
    border-radius: 10px; /* Coins arrondis si tu le souhaites */
}

.center-text {
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 32px;
    color: #0073b1;
}


.parcours {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.parcours h3 {
    font-size: 32px;
    color: #0073b1;
    margin-bottom: 40px;
}

.parcours-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Espacement entre les items */
    position: relative;
}

.parcours-item {
    width: 200px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.parcours-item h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0073b1;
}

.parcours-item p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

/* Ligne verticale */
.parcours-line {
    width: 2px;
    height: 100px; /* Ajuste la hauteur en fonction du contenu */
    background-color: #0073b1;
    position: relative;
}
