@media print {
    /* Réinitialisation des marges et des paddings */
    body, h1, h2, h3, p, img {
        margin: 0;
        padding: 0;
    }

    /* Styles généraux pour le corps du document */
    body {
        font-family: serif;
        line-height: 1.4;
        color: #000;
        background: none;
    }

    /* Masquer les éléments non nécessaires à l'impression */
    header, footer, nav, aside {
        display: none;
    }

    /* Styles spécifiques pour les sections importantes */
    main {
        padding: 1cm;
    }

    h1, h2, h3 {
        page-break-after: avoid;
        page-break-before: avoid;
    }

    p {
        margin-bottom: 1em;
    }

    img {
        max-width: 100%;
        height: auto;
        page-break-before: avoid;
        page-break-after: avoid;
    }

    /* Assurez-vous que les liens sont visibles */
    a {
        color: #000;
        text-decoration: underline;
    }

    /* Ajustement des tableaux pour l'impression */
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1em;
    }

    th, td {
        border: 1px solid #000;
        padding: 0.5em;
        text-align: left;
    }

    /* Masquer les images non essentielles */
    .no-print {
        display: none;
    }
}
