/* Styles de base */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

/* Conteneur principal */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Titres */
h1 {
    text-align: center;
    color: #444;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    color: #555;
    margin-top: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

/* Paragraphes et listes */
p {
    font-size: 1rem;
    margin: 10px 0;
}

ul {
    list-style-type: disc;
    margin: 10px 0 20px 20px;
}

ul li {
    margin-bottom: 5px;
}

/* Liens */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }
}
