.container {
    width: 90%;
    margin: 3vw auto;
    padding: 20px;
}

.button_parcours{
    margin: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button_box{
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;



}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.arrow.rotated {
    transform: rotate(180deg);
}

.section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.section:nth-child(even) {
    flex-direction: row-reverse;
}
.section img {
    width: 90%;
    max-width: 500px;
    height: 300px; /* ou toute autre hauteur désirée */
    object-fit: cover;
    border-radius: 10px;
    margin: 20px;
}



.section-content {
    flex: 1;
    padding: 20px;
}
.section h2 {
    color: black;
    font-size: 2rem;
    margin-bottom: 20px;
}
.section p {
    text-align: justify;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }
}