body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #B22222; /* Rouge brique */
    color: white;
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 0;
    font-size: 2rem;
}

.sitemap-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sitemap-section ul {
    list-style-type: none;
    padding: 0;
}

.sitemap-section ul li {
    margin: 10px 0;
}

.sitemap-section ul li a {
    color: #B22222; /* Rouge brique */
    text-decoration: none;
    font-weight: bold;
}

.sitemap-section ul li a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
}