* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style global du body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Conteneur principal pour centrer le contenu */
.container {
    margin: 0 auto;
    max-width: 950px;
    padding: 30px;
    border-radius: 10px;
}
@media screen and (max-width: 950px) {
    body{
        padding: 0;
    }
}

/* Titres */
h1 {
    text-align: center;
    color: orange;
    margin-bottom: 20px;
    font-size: 2rem;
    border-bottom: 1px solid orange;
}

h2 {
    color: #333;
    margin-top: 20px;
    font-size: 1.5rem;
}

/* Paragraphes */
p {
    font-size: 1rem;
    margin: 10px 0;
    color: #555;
}

/* Sections avec espacement */
.section {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid orange;
}

/* Style pour les liens */
a {
    color: #1e2a8a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Style pour les boutons (ex. pour retour à la page d'accueil) */
.btn {
    display: inline-block;
    background-color: rgb(215, 148, 22);
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 5px 0 4px rgba(0, 0, 0, 0.05);
    transition: all 2s ease;
}

.btn:hover {
    background-color: rgb(186, 123, 7);
}

/* Footer simple */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
}