/* Style général */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding-top: 190px; /* Pour compenser les bandeaux fixes */
}

/* Conteneur principal */
.container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Titres */
h1, h2 {
    color: #006400;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8em;
    margin-top: 30px;
    border-bottom: 2px solid #006400;
    padding-bottom: 5px;
}

/* Paragraphes */
p {
    font-size: 1.2em;
    margin-bottom: 15px;
    text-align: justify;
}

/* Liste stylisée */
ul {
    padding-left: 20px;
}

li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Liens */
a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 30px;
}
