* {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
}

/* ============================================================
   RESTAURATION DES MARGES TYPOGRAPHIQUES
   Tailwind Preflight supprime les marges par défaut des titres
   et paragraphes. On les restaure pour garder une hiérarchie
   naturelle sans avoir à la redéfinir partout.
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

/* Sur le dernier enfant, pas de marge pour éviter l'espace vide en bas */
h1:last-child, h2:last-child, h3:last-child,
h4:last-child, h5:last-child, h6:last-child,
p:last-child {
    margin-bottom: 0;
}
