/* Réinitialisation simple */
* {
    box-sizing: border-box;
}

/* Corps de page */
body {
    margin: 0;
    padding: 40px;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #fafafa;
    color: #2b2b2b;
}

/* Titre principal */
h1 {
    text-align: center;
    font-size: 2.5em;
    color: #c8102e; /* Rouge Coca-Cola plus profond */
    margin-bottom: 50px;
}

/* Sous-titres */
h2 {
    color: #c8102e;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Paragraphes */
p {
    line-height: 1.8;
    font-size: 1.05em;
}

/* Liens */
a {
    color: #c8102e;
    text-decoration: underline;
}

a:hover {
    color: #000000;
}

/* Image */
img {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Blocs de contenu */
body > h2,
body > p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Mise en avant des actualités */
h2 + p {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* Navigation simple (liens du haut) */
p a {
    font-weight: 600;
}
