body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #ff69b4; /* Rose */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 15px;
    background-color: #ff0000; /* Rouge */
}

nav ul li a:hover {
    background-color: #cc0000; /* Darker red */
}

main {
    padding: 20px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.image-left {
    order: 1;
    margin-right: 20px;
    max-width: 100%;
    height: auto;
}

.image-right {
    order: 2;
    margin-left: 20px;
    max-width: 100%;
    height: auto;
}

.text-right, .text-left {
    flex: 1;
    text-align: left;
    margin: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .content {
        flex-direction: column;
    }

    .image-left, .image-right {
        margin: 20px auto;
    }

    .text-right, .text-left {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    nav ul li {
        margin: 5px 0;
    }

    header, footer {
        padding: 10px 0;
    }
}
