/* Style général */
body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    background-color: #f5f5f5;
    color: black;
}

/* Titre principal */
h1 {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    line-height: 1.2;
    font-size: 72px;
    margin: 30px 0;
}

/* Conteneur central (style presse) */
.contenu {
    max-width: 800px;     /* largeur confortable */
    margin: 0 auto;       /* centre */
    padding: 0 24px;      /* air à gauche / droite */
}

/* Titres */
h2 {
    font-weight: bold;
    color: brown;
    font-size: 48px;
    margin-bottom: 20px;
}

/* Paragraphes */
p {
    font-size: 22px;
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1.2em;
}

/* 📱 Adaptation mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 40px;
        margin: 20px 0;
    }

    h2 {
        font-size: 30px;
    }

    p {
        font-size: 18px;
    }

    .contenu {
        padding: 0 16px;  /* marges mobiles type Gorafi */
    }
}
