/* Réinitialisation des marges et des espacements par défaut */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Styles pour le corps de la page */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
}

/* Styles pour l'en-tête */
header {
    background-color: #222;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Styles pour les sections */
section {
    padding: 40px;
    background-color: #fff;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Styles pour les images */
img {
    max-width: 100%;
    height: auto;
}

/* Styles pour les articles d'actualités */
article {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

article h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Styles pour le pied de page */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #222;
    color: #fff;
}

/* Styles pour les liens */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}