/* Titres principaux */
h1, h3 {
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

/* Sous-titre (h3) stylisé */
h3 {
    background-color: orange;
    color: white;
    font-size: 1.3em;
    padding: 10px;
    margin: 0;
    border-radius: 5px;
}

/* Section "news" */
.news {
    width: 70%;
    margin: 30px auto;
    font-family: sans-serif;
}

/* Paragraphe à l’intérieur de la section "news" */
.news p {
    background-color: #e0e0e0;
    margin-top: 0;
    padding: 15px;
    border-radius: 4px;
    line-height: 1.6;
}

/* Liens */
a {
    text-decoration: none;
    color: #0074D9;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}
