body {
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.content-container {
    display: flex;
    width: 100%;
    margin-top: 100px;
    font-size: 0.9em;
    margin-bottom:20px;
    align-content: center;
}

.left, .right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

a:hover{
    font-weight: 600;
}

.active {
    font-weight: 600;
}


/* Styles existants */
.contact {
    flex-basis: 60%;
    display: flex;
    gap: 20px;
    text-align: center;
    font-size:0.9em;
    flex-direction: column;
    align-items: center;
}


.img {
    width: 100%;
}

.map-contact {
    width: 600px;
}

.location{
    width: 100%;
    display: flex;
    gap: 20px;
    align-content: start;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}

.lieu {
    width: 350px;
}

h3{
    font-size:1em;
    padding:10px 0;
}

.text {
    text-align: center;
}

.text-column {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* Ajout pour adaptation mobile */
@media (max-width: 1100px) {

    .text-column {
        flex-direction: column;
        align-items: center;
    }

    .text-column .text {
        width: 100%;
        max-width: 300px;
    }


    .text-column {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
}


@media (max-width: 1100px) {


    .content-container {
        display: flex;
        width: calc(100% - 40px);
        flex-direction: column-reverse;
        justify-content: flex-end;
        margin-top: 90px;
        align-items: center;
        gap: 20px;
        text-align:center;
    }

}

@media (max-width: 1100px) {
    .contact {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .location {
        flex-direction: column;
        width: 100%;
    }

    .lieu {
        width: 100%;
    }

    .img {
        max-width: 450px;
    }

    .map-contact {
        width: 100%;
        max-width:600px;
        padding-bottom: 100px;
    }

    .left, .right {
        display: none;
    }

    .content-container {
        margin-bottom: 120px;
    }

    p{
        padding-bottom:20px;
    }
}