    /* CSS GLOBAL CONSERVÉ ET ADAPTÉ */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background-color: #f9f9f9;
      line-height: 1.6;
      color: #333;
      padding-top: 70px; /* Ajoute un espace pour le titre fixe */
    }

    /* MODIFIFICATION POUR PAGE INDEX */
    .index-fixe {
    margin-top: 80px; 
}

    /* MODIFICATION 1 : TITRE FIXE */
    h1 {
      color: #0b3d91;
      text-align: center;
      padding: 20px 0;
      margin: 0;
      background-color: #ffffff;
      border-bottom: 2px solid #ddd;
      position: fixed; /* Rendre le titre fixe */
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000; /* Assure que le titre est au-dessus du reste */
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      box-sizing: border-box; /* Inclut le padding et border dans la largeur/hauteur */
      min-height: 70px; /* Définir une hauteur fixe */
    }

    h2, h3 {
      color: #0b3d91;
    }
    .cta-button {
      display: block;
      background-color: #e63946;
      color: #fff;
      padding: 15px 10px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      margin: 15px 0;
      text-align: center;
      transition: background-color 0.3s;
    }
    .cta-button:hover {
      background-color: #c82333;
    }

    /* NOUVEAU CSS POUR LA STRUCTURE EN COLONNES */
    .main-wrapper {
      display: flex;
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 20px;
    }

    /* COLONNE 1 : NAVIGATION (BOUTONS) */
    .sidebar {
      width: 300px;
      margin-right: 20px;
      background: #ffffff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      /* position: sticky; */
      /*top: 90px;// Décalage pour laisser la place au titre fixe + marge*/
     /* max-height: calc(100vh - 150px); Hauteur maximale: viewport - titre - marges*/
      /* overflow-y: auto; */
      padding-bottom: 40px;
    }
    .sidebar h2 {
      margin-top: 0;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }

    /* MODIFICATION 2 : STYLE DES BOUTONS DE CATÉGORIE */
    .category-button {
        display: block;
        background-color: #0b3d91; /* Couleur primaire pour la catégorie */
        color: #fff;
        padding: 15px 10px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        margin-top: 15px;
        cursor: pointer;
        text-align: left;
        border: none;
        width: 100%;
        transition: background-color 0.3s;
        position: relative;
    }
    .category-button:hover {
        background-color: #082a63;
    }
    .category-button::after {
        content: '+';
        position: absolute;
        right: 15px;
        font-size: 1.2em;
        line-height: 1;
        transition: transform 0.3s;
    }
    .category-button.active::after {
        content: '-';
        transform: rotate(180deg);
    }

    /* CONTENEUR DES SOUS-BOUTONS */
    .submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        padding: 0 10px;
        background-color: #f1f1f1;
        border-radius: 0 0 5px 5px;
    }
    .submenu a.cta-button {
        margin: 10px 0; /* Espacement plus petit pour les sous-menus */
        padding: 10px;
        background-color: #e63946; /* Couleur différente pour les produits */
    }

    /* COLONNE 2 : CONTENU PRINCIPAL */
    .content {
      flex-grow: 1;
      min-width: 0;
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
    .content .presentation-box {
      border: 3px solid #e63946;
      padding: 20px;
      margin-bottom: 30px;
      border-radius: 5px;
      text-align: center;
    }
    .content .image-placeholder {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 300px;
      margin: 20px auto;
      background-color: #ddd;
      border-radius: 5px;
      overflow: hidden;
    }
    .content img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    /* RESPONSIVE */
    @media (max-width: 850px) {
      body {
        padding-top: 70px; /* Conserve l'espace du titre fixe sur mobile */
      }
      .main-wrapper {
        flex-direction: column;
        padding: 0 10px;
        margin: 10px auto;
      }
      .sidebar {
        width: auto;
        margin-right: 0;
        margin-bottom: 20px;
        position: static;
        top: auto;
        max-height: none;
        overflow-y: visible;
      }
      .content {
        max-height: none;
        overflow-y: visible;
        padding: 20px;
      }
    }
    
    /* Styles pour le footer et les liens */
    footer {
      text-align: center;
      padding: 30px 20px;
      font-size: 0.9rem;
      color: #999;
    }
    .liens-site-principal {
      text-align: center;
      margin: 40px auto 10px;
      font-size: 0.95rem;
      color: #555;
    }
    .liens-site-principal a {
      color: #0066cc;
      text-decoration: none;
      font-weight: bold;
    }
    .liens-site-principal a:hover {
      text-decoration: underline;
    }
    .liens-site-principal .slogan {
      display: block;
      font-size: 0.85rem;
      color: #888;
      margin-top: 5px;
    }
  /* --- NOUVEAU STYLE POUR LES LIENS DANS LE MENU DÉROULANT --- */

.submenuUl ul {
    list-style: none; /* Retire les puces de la liste */
    padding: 0;
    margin: 10px 0 0 0; /* Ajoute un peu d'espace */
}

.submenuLi li {
    margin-bottom: 8px; /* Espace entre les boutons du menu */
}

/* Style Bouton pour les liens de sous-menu */
.submenu-link {
    display: block; /* Prend toute la largeur disponible */
    padding: 12px 15px;
    background: #e60000; /* Un rouge vif, ou votre couleur préférée */
    color: white !important; /* Le !important est souvent nécessaire pour forcer la couleur du texte */
    text-decoration: none;
    border-radius: 15px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
    margin-bottom: 3px;
}
/* --- STYLES SPÉCIFIQUES À LA PAGE D'ACCUEIL --- */

/* Conteneur de la grille (pour centrage et alignement) */
.produits-vedette-grid {
    margin-top: 40px;
   
}

/* Grille pour les cartes de produits (3 colonnes) */
.card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 3 colonnes flexibles */
    gap: 20px;
    margin-top: 20px;
}

/* Style de chaque carte de produit */
.produit-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.produit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.produit-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.produit-card h3 {
    font-size: 1.1em;
    min-height: 40px; /* Assure que les titres ont une hauteur uniforme */
    margin-top: 0;
}

.produit-card h3 a {
    color: #0d47a1;
    text-decoration: none;
}

.produit-card p {
    font-size: 0.9em;
    color: #666;
    min-height: 50px; /* Assure une hauteur uniforme pour les descriptions */
}

/* Ajustement du bouton CTA dans la carte */
.produit-card .cta-button {
    padding: 10px 15px;
    font-size: 1em;
    margin-top: 10px;
}

/* Media Query pour un affichage sur mobile (les cartes prennent toute la largeur) */
@media (max-width: 768px) {
    .card-wrapper {
        grid-template-columns: 1fr;
    }
    .produit-card img {
      display:block;
    max-width: 100%;
    width:100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0 auto
}
}