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

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

header img {
    max-height: 110px;
}

header h1,
header p {
    margin: 0;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ea381eff;
}

nav a {
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    text-transform: uppercase;
}

nav a:hover {
    background-color: #1d9ec7ff;
    /* Bleu */
}

.container {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
}

.services,
.about,
.contact {
    margin: 20px 0;
}

.services h2,
.about h2,
.contact h2 {
    color: #ea381eff;
    /* Rouge */
    clear: both;
}

.services a,
.services a:hover,
.services a:visited {
    color: #1d9ec7ff;
}

h3 {
    color: #1d9ec7ff;
    clear: both;
}

.services,
.about,
.contact,
.service-detail {
    color: #333333;
}

.service-detail img, #about > img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    float: left;
    padding-right: 20px;
}

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

.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector button {
    background-color: #ea381eff;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.language-selector-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.language-selector-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.language-selector-content a:hover {
    background-color: #f1f1f1;
}

.language-selector:hover .language-selector-content {
    display: block;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header img {
        max-height: 80px;
    }

    nav a {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    nav a {
        padding: 8px;
        font-size: 14px;
    }
}
