body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

main {
    padding: 1rem;
}

section {
    background-color: #fff;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

img {
    width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    max-width: 500px; /* Adjust this value as needed */
}

img.same-size {
    width: 300px; /* Set a fixed width */
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

footer {
    background-color: #333; /* Gris */
    color: #fff; /* Texte blanc */
    padding: 1rem;
    text-align: center;
    position: relative; /* Pour un bon placement */
    bottom: 0; /* Position le footer en bas */
    width: 100%; /* S'assure que le footer s'étend sur toute la largeur */
}

/* Privacy section styles */
#privacy-info {
     background-color: #333; /* Gris */
    color: #fff; /* Texte blanc */
    padding: 1rem;
    text-align: center;
    position: relative; /* Pour un bon placement */
    bottom: 0; /* Position le footer en bas */
    width: 100%; /* S'assure que le footer s'étend sur toute la largeur */

}