.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 150px;
    border-radius: 8px;
}

h2 {
    color: #003366;
    margin-bottom: 20px;
}

section {
    margin-bottom: 50px;
}

section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.cartes {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.carte-image {
    width: 550px;
}

.carte-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.telechargements {
    text-align: center;
}

.cyclo {
    margin-bottom: 80px;
}

.telechargements img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.telechargements .bus img {
    max-width: 600px;
    height: auto;
}

.telechargements button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #EBD5BD;
    color: #333333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.telechargements button:hover {
    background-color: #DAC3AC;
}

.horaires-plans img {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
}

.carrousel {
    text-align: center;
    margin-bottom: 80px;
}

.carrousel button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #EBD5BD;
    color: #333333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carrousel button:hover {
    background-color: #DAC3AC;
}

.affiche-marche {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.affiche-marche img {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 768px) {
    .container {
        padding-top: 100px;
    }

    .cartes {
        flex-direction: column;
        align-items: center;
        margin: 20px 0;
    }

    .telechargements, .carte-image {
        width: 100%;
    }

    .telechargements img {
        max-width: 100%;
    }

    .affiche-marche {
        flex-direction: column;
        align-items: center;
    }

    .affiche-marche img {
        max-width: 100%;
    }

    .carrousel button {
        width: 80%;
        margin: 10px auto;
    }

    h2 {
        padding-left: 20px;
    }

    .container{
        width: 80%;
        margin: 0 auto;
    }
}