wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    margin-top: 50px;
    background-color: #f4f4f4;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section:nth-child(even) {
    background-color: #fff;
}

.section .content {
    max-width: 600px;
    margin-bottom: 1rem;
}

.section .image {
    width: 100%;
    max-width: 400px;
}

.section .image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2rem;
    color: #005177;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

a.btn {
    display: flex;
    padding: 0.5rem 1rem;
    background-color: #005177;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 0 auto;
    width: 200px;
    text-align: center;
    justify-content: center;
}

a.btn:hover {
    background-color: #062a4d;
    color: white;
}



iframe {
    width: 100%;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .section {
        flex-direction: row;
        text-align: left;
    }

    .section:nth-child(even) .content {
        order: 2;
    }

    .section .content,
    .section .image {
        flex: 1;
        max-width: none;
    }

    .section .image {
        margin-left: 2rem;
    }

    .section:nth-child(even) .image {
        margin-left: 0;
        margin-right: 2rem;
    }
}

footer {
    color: white;
    text-align: center;
    background-color: black;
}

footer p {
    margin-bottom: 0;
    text-align: center;
}


@media screen and (max-width: 768px) {
    .section .image.carte {
        max-width: 100%;
    }
}
