 h1, p, a {
    color: white;
    margin-left: 20px;
   
}
.non-centre {
text-align: left;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d9aa74;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 24px;
}

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        nav {
            background: #333;
            color: white;
            padding: 15px 0;
            text-align: center;
            width: 100%;
        }
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        nav ul li {
            position: relative;
            padding: 10px 20px;
        }
        nav ul li .onglets {
            display: none;
            position: absolute;
            background: #444;
            padding: 5px;
            border-radius: 5px;
            top: 40px;
            left: 0;
            white-space: nowrap;
        }
        nav ul li:hover .onglets {
            display: block;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }
        .container {
            padding: 20px;
            max-width: 800px;
            margin: auto;
        }
        h1 {
            text-align: center;
            text-decoration: underline;
        }
        .section {
            margin-bottom: 20px;
        }
        .section-content {
            display: none;
        }
        .section-content.open {
            display: block;
        }
           @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            h1 {
                font-size: 1.5em;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                padding: 15px;
            }
            nav a {
                font-size: 20px;
            }
        }
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
        }
        /* Sous-menu */
        .onglets {
            display: none;
            position: absolute;
            background-color: #555;
            min-width: 150px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .liste:hover .onglets {
            display: block;
        }
        
        .onglets a {
            display: block;
            padding: 10px;
            color: white;
            text-decoration: none;
        }
        
        .onglets a:hover {
            background-color: #777;
        }