/* Styles généraux */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2 {
    color: #4caf50;
}

/* Styles pour l'en-tête et la navigation */
header {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #4caf50;
    border-bottom: 2px solid #4caf50;
}

/* Styles pour les sections */
section {
    padding: 60px 20px;
    margin: 10px auto;
    max-width: 1000px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

section h1, section h2 {
    border-bottom: 2px solid #4caf50;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
}

section p {
    font-size: 1.1em;
}

/* Styles pour le pied de page */
footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* Responsiveness */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
    
    section {
        padding: 40px 20px;
    }
}