  @media print {

    /* Configuration de la page pour l'impression */
    @page {
      margin-top: 20mm;
      /* 3 cm en haut */
      margin-bottom: 30mm;
      /* 3 cm en bas */
    }

    /* Styles généraux */

    body {
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-size: medium;
      background-color: white;
      color: #000;
      margin: 5mm;
      padding: 0;
      height: auto;
      box-shadow: none;
      overflow: visible;
    }

    h1 {
      font-size: 17px;
      color: #000;
      text-align: left;
      margin-bottom: 10px;
    }

    h2,
    h3 {
      font-size: 17px;
      color: #000;
      text-align: left;
    }

    h4 {
      font-size: 16px;
      color: #000;
      text-align: left;
    }

    h5 {
      font-size: 15px;
      color: #000;
      text-align: left;
    }

    p {
      font-size: medium;
      text-align: justify;
      margin: 10px 0;
      line-height: 1.5;
      color: #333;
    }

    a {
      color: #000;
      text-decoration: underline;
    }

    /* En-tête et pied de page */
    header {
      text-align: center;
      background-color: white;
      color: #000;
      box-shadow: none;
      padding: 5mm;
      margin: 2px;
    }

    /* Alignement des images */
    img {
      max-width: 100%;
      height: auto;
      border-radius: 0;
      display: block;
      margin: 0 auto
        /* Centrer les images */
    }

    /* Figures et légendes */
    figure {
      text-align: center;
      margin: 10px 0;
    }

    figcaption {
      font-style: italic;
      font-size: 10px;
      color: #333;
    }

    /* Barre de navigation */
    .navbar,
    .nav-item,
    .nav-indicator {
      display: none;
      /* Ne pas afficher la barre de navigation lors de l'impression */
    }

    /* Autres éléments visuels */
    .sections-list,
    .section-item,
    .section-title,
    .section-description {
      display: block;
      border: none;
      padding: 0;
      /* Garder le texte sans autres éléments décoratifs */
    }

    /* Décoration */
    * {
      box-sizing: border-box;
      text-decoration: none;
    }

    /* Supprimer les animations */
    .nav-item:hover {
      background-color: transparent;
      color: #000;
    }

    /* Ne pas afficher  lors de l'impression */
    footer,
    aside,
    .menu {
      display: none;
    }

  }