body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f8ff; /* Bleu clair */
    color: #333;
    text-align: center;
}
header, footer {
    background: #4682b4; /* Bleu acier */
    color: white;
    padding: 20px;
}
nav {
    display: flex;
    justify-content: center;
    background: #87cefa; /* Bleu ciel */
    padding: 10px 0;
    margin-bottom: 20px;
}
nav a {
    text-decoration: none;
    color: white;
    margin: 0 15px;
    font-weight: bold;
    font-size: 18px;
    background: #1e90ff; /* Bleu Dodger */
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s ease;
}
nav a:hover {
    background: #104e8b; /* Bleu roi foncé */
}
section {
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
}
.btn {
    display: inline-block;
    margin-top: 60px; /* Positionne le bouton plus bas */
    background: #4682b4; /* Bleu acier */
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}
.btn:hover {
    background: #104e8b; /* Bleu roi foncé */
}
img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block; /* Centre les images */
}
footer p {
    font-size: 14px;
    margin: 5px 0;
}
@media (max-width: 600px) {
    nav {
        flex-direction: column;
    }
    nav a {
        margin: 5px 0;
    }
}
