/* Base Styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f7fb; /* Fond doux en harmonie avec le header */
    color: #333; /* Couleur de texte sombre pour une bonne lisibilité */
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Contenu aligné sous le header */
    padding: 20px; /* Ajout d'un espace autour du contenu */
}

/* Conteneur Principal */
.container {
    max-width: 800px;
    width: 100%;
    background: #ffffff; /* Fond blanc pour contraste */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre subtile */
    overflow-y: auto;
}

/* Titres */
h1 {
    font-size: 28px;
    color: #22438C; /* Harmonisé avec le header */
    text-align: center;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
}

/* Styles spécifiques */
.b {
    font-weight: bold;
}

.i {
    font-style: italic;
}

/* Media Queries pour la Responsivité */
@media only screen and (max-width: 768px) {
    body {
        padding-top: 90px; /* Augmente l'espacement pour les petits écrans */
    }

    .container {
        max-width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        max-width: 95%;
        padding: 10px;
    }

    h1 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
    }
}
