body {
    font-family: 'Georgia', serif;
    background-color: #f8f6f3;
    color: #2e2e2e;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-bottom: 2px solid #bbb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header img {
    height: 60px;
}

@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
    }
}

nav {
    background-color: #b0b0b0;
    display: flex;
    justify-content: center;
    padding: 12px 0;
    gap: 25px;
}

nav a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    padding: 6px 12px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #888;
    border-radius: 6px;
    color: #fff;
}

section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h2 {
    color: #001f3f;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

p {
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 15px;
}

section img {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flacons-ligne {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.flacons-ligne img {
    width: 30%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.flacons-ligne img:hover {
    transform: scale(1.05);
}

.logos-partenaires {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.logos-partenaires a img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logos-partenaires a img:hover {
    transform: scale(1.15);
}

footer {
    text-align: center;
    font-size: 0.95em;
    background-color: #2e2e2e;
    color: white;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #555;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

footer a:hover {
    text-decoration: underline;
    transform: scale(1.1);
}

footer img.logo-footer {
    height: 40px;
    margin: 10px;
    transition: transform 0.3s ease;
}

footer img.logo-footer:hover {
    transform: scale(1.2);
}
