    
    /* Reset spécifique pour le menu */
  .nav-hamburger,
  .nav-hamburger * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .nav-hamburger {
    position: relative;
    background: #004d71;
  }

  /* Styles de base pour tous les états */
  .menu,
  .submenu {
    list-style: none;
  }

  .menu a,
  .submenu-toggle {
    color: white;
    text-decoration: none;
    display: block;
  }
    
  
  
  /* 0. Style du skip-link (accessible au clavier) */
  .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #005f66;
    color: #fff;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
    text-decoration: none;
  }
  .skip-link:focus {
    top: 0;
  }

  /* 0. Smooth scrolling pour tous les ancres */
  html {
    scroll-behavior: smooth;
  }

  /* global box-sizing */
  *, *::before, *::after {
    box-sizing: border-box;
  }

  /* === Structure de base === */
  body {
    font-family: Arial, sans-serif;
    background: #f4f8fb;
    color: #222;
    margin: 0;
    padding: 0;
  }

  /* === En-tête === */
  header {
    background: #002b45;
    color: white;
    text-align: center;
    padding: 40px 20px 20px;
    position: relative;
  }
  header img.logo {
    height: 140px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  header h1 {
    color: white;
    margin-bottom: 5px;
  }
  header p {
    color: #dde5eb;
    font-style: italic;
  }

  /*Bouton vertical zone intervention flottant*/
  :root {
    --zone-button-top: 160px; /* valeur par défaut de secours */
  }



  nav a:hover {
    text-decoration: underline;
  }

  /* === Zones de contenu === */
  .container,
  main,
  section {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
  }
  h1, h2, h3 {
    color: #002b45;
    margin-top: 30px;
  }
  p, li {
    line-height: 1.6;
  }
  ul {
    padding-left: 20px;
  }
  a {
    color: #007B8A;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }

  /* === Pied de page === */
  footer {
    background: #002b45;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
  }
  footer a {
    color: #ddeeff;
  }
  footer a:hover {
    text-decoration: underline;
  }
  footer img {
    vertical-align: middle;
    height: 20px;
    margin-left: 5px;
  }

  /* === Formulaires === */
  form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  input, textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  button {
    background: #007B8A;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
  }
  button:hover {
    background: #005f66;
  }

  /* === Bouton style appel à action === */
  .cta {
    display: inline-block;
    background: #007B8A;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease-in-out;
  }
  .cta:hover {
    background: #005f66;
    transform: translateY(-2px);
  }

  /* === Iframe responsive === */
  .iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
  }
  .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* === Mise en page pour "a_propos" en deux colonnes === */
  .container {
    display: flex;
    flex-wrap: wrap;
  }
  .photo {
    flex: 1 1 250px;
    text-align: center;
    margin-bottom: 20px;
  }
  .photo img {
    max-width: 100%;
    border-radius: 10px;
  }
  .bio {
    flex: 2 1 400px;
    padding-left: 20px;
  }


/* ===  ’animation subtile et élégante pour  footer  */
footer p {
  opacity: 0;
  animation: fadeInFooter 1.2s ease-in-out forwards;
  animation-delay: 0.4s;
}

  @keyframes fadeInFooter {
    to {
      opacity: 1;
    }
  }

  footer img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }

  /* === Breadcrumb === */
/* === Breadcrumb === */
.breadcrumb {
    font-size: 0.9em;
    color: #444;
    margin: 20px 20px 0;
    padding: 6px 0 5px;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb a {
    color: #004d71;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #777;
    display: flex;
    align-items: center;
}

/* Ajout des séparateurs */
.breadcrumb span:not(:last-child)::after {
    content: ">";
    margin: 0 8px;
    color: #999;
    font-weight: normal;
}

/* Style spécifique pour le dernier élément */
.breadcrumb span:last-child {
    color: #444; /* Plus foncé pour l'élément actif */
    font-weight: 600;
}

  /* ==== Styles spécifiques à cybersecurite.html ==== */

  body { font-family: Arial, sans-serif; background: #f4f8fb; margin: 0; padding: 0; color: #222; }
    header { background: #002b45; color: white; text-align: center; padding: 40px 20px 20px; position: relative; }
    header img.logo { height: 140px; margin-bottom: 10px; cursor: pointer; }
    .breadcrumb { font-size: 0.9em; color: #444; margin: 20px; padding: 6px 0; font-weight: 500; border-bottom: 1px solid #e0e0e0; }
    .breadcrumb a { color: #004d71; text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb span { color: #777; }
    section {  padding: 40px 20px;  max-width: 900px;  margin: 0 auto 20px;  background: white;  border-radius: 8px;}
    h1 { color: white; }
    h2 { color: #002b45; margin-top: 0; }
    h3 { color: #002b45; }
    .intro { font-size: 1.1em; margin-bottom: 30px; }
    ul, ol { padding-left: 20px; }
    table { width: 100%; border-collapse: collapse; margin-top: 20px; }
    table th, table td { border: 1px solid #ddd; padding: 10px; text-align: left; }
    table th { background: #f0f0f0; }
    .cta { display: inline-block; background: #007B8A; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin-top: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.15); transition: transform 0.2s ease-in-out; }
    .cta:hover { background: #005f66; transform: translateY(-2px); }
    footer { text-align: center; padding: 20px; font-size: 0.9em; color: #666; }
   
  /* Titre de section */
  #pourquoi-cybersecurite h2 {
    color: #002b45;
    text-align: center;
    margin-bottom: 20px;
  }

  /* Conteneur de chaque raison */
  .reason {
    max-width: 900px;
    margin: 10px auto;
  }
  .reason summary {
    display: block;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    list-style: none; /* supprime le marker */
    text-decoration: underline; /* invite au clic */
    color: #002b45;
    font-weight: bold;
  }
  .reason summary::-webkit-details-marker {
    display: none;
  }

  /* Quand c’est ouvert, on retire le souligné et ajoute “(Réduire)” */
  .reason[open] summary {
    text-decoration: none;
  }
  .reason[open] summary::after {
    content: " (Réduire)";
    color: #007B8A;
    font-weight: normal;
    font-size: 0.9em;
  }

  /* Style du contenu étendu */
  .details-content {
    padding: 12px 16px;
    background: #fafafa;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    color: #444;
    font-size: 0.95em;
  }

    /*- pour activer bouton Haut -*/
  .back-to-top {
    text-align: right;
    margin: 10px 0 30px;
  }
  .back-to-top a {
    color: #007B8A;
    font-size: 0.9em;
    text-decoration: none;
  }
  .back-to-top a:hover {
    text-decoration: underline;
  }


  /* Note certifications */
  .certifications {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 0.95em;
    color: #007B8A;
    text-align: center;
  }

   /* FAQ interactif */
  #faq h2 {
    color: #002b45;
    text-align: center;
    margin-bottom: 20px;
  }
  .question {
    max-width: 900px;
    margin: 8px auto;
  }
  .question summary {
    display: block;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: underline;
    color: #002b45;
    font-weight: bold;
    list-style: none;
  }
  .question summary::-webkit-details-marker {
    display: none;
  }
  .question[open] summary {
    text-decoration: none;
  }
  .question[open] summary::after {
    content: " (Réduire)";
    color: #007B8A;
    font-size: 0.9em;
    font-weight: normal;
  }
  .answer {
    padding: 12px 16px;
    background: #fafafa;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    color: #444;
    font-size: 0.95em;
  }

    /* Formulaire de contact dans la FAQ */
  #contact-faq {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  #contact-faq h2 {
    color: #002b45;
    text-align: center;
    margin-bottom: 20px;
  }
  .faq-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #004d71;
  }
  .faq-form input,
  .faq-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    font-family: Arial, sans-serif;
  }
  .faq-form textarea { min-height: 120px; resize: vertical; }
  .faq-form .cta {
    display: inline-block;
    margin-top: 20px;
    background: #007B8A;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
  }
  .faq-form .cta:hover {
    background: #005f66;
    transform: translateY(-2px);
  }

 
  /* adapter les CTA sur mobile */
  .cta {
    font-size: 1em;      /* taille de texte normale */
    padding: 12px 24px;  /* plus de zone cliquable */
  }

  /* Boutons CTA */
  .cta {
    font-size: 0.95em;     /* légèrement plus petit */
    padding: 10px 20px;    /* zone cliquable toujours confortable */
  }

  /* centre et espace le paragraphe sous Méthodologie */
  .intro-cta {
    text-align: center;
    margin-top: 20px;
  }

  /* centre et espace le paragraphe sous Tarifs & formules */
  .tarifs-cta {
    text-align: center;
    margin-top: 20px;
  }

  .notes {
    font-size: 0.9em;
    color: #555;
    text-align: center; /* optionnel */
  }

  /* ==== Ajustement RDV : agrandir le Bookings iframe ==== */
  .iframe-container {
    /* largeur : 100% du container, ajouté à 100% de .container */
    width: 100%;
    /* hauteur : ratio plus généreux (16:9 → 56.25%, 4:3 → 75%) */
    padding-bottom: 75%;      /* ou passe à 80% pour encore plus de hauteur */
    /* tu peux aussi fixer un min-height sur desktop */
    min-height: 600px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
  }

  .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .container .photo {
    flex: 1 1 300px;
    max-width: 350px;
  }

  .container .bio {
    flex: 2 1 600px;
}

   /* Utilitaires */

    .full-width {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

 
    /* 2. Desktop (≥769px) : menu horizontal + dropdown au hover */
  @media (min-width: 769px) {
    /* Navigation */
    .nav-hamburger { background: #004d71; }
    
    /* Suppression du hamburger */
    .menu-toggle, .menu-icon, .menu-label { display: none; }

    /* Menu principal */
    .menu {
      display: flex !important;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      background: none;
    }

    .menu li { position: relative; }

    .menu a {
      padding: 12px 16px;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    .menu a:hover { background: rgba(255, 255, 255, 0.2); }

    /* Sous-menus */
    .submenu-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      color: white;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
    }

    .submenu-toggle::after {
      content: " ▾";
      margin-left: 4px;
      font-size: 0.9em;
    }

    .submenu-details { position: relative; }

    .submenu-details ul {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      width: max-content;
      margin: 0;
      padding: 0;
      list-style: none;
      background: #004d71;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      visibility: hidden;
      opacity: 0;
      transform: translateY(-5px);
      transition: all 0.3s ease;
    }

    .submenu-details:hover ul {
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
    }

    .submenu-details ul li {
      padding-left: 28px;
      position: relative;
      white-space: nowrap;
      display: flex;
      align-items: center;
    }

    .submenu-details ul li::before {
      content: "";
      position: absolute;
      left: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      background: url("https://www.ndsi-consult-pro.fr/images/fleche-droite.png") no-repeat center/contain;
    }

    .submenu-details ul li a {
      display: block;
      color: white;
      text-decoration: none;
      padding: 10px 16px;
      font-weight: normal;
    }

    .submenu-details ul li a:hover { background: rgba(255, 255, 255, 0.2); }

    /* Accessibilité */
    .submenu-toggle:focus,
    .submenu-details ul li a:focus {
      outline: 2px solid white;
      outline-offset: 2px;
    }

    /* Layout */
    .page-layout {
      display: flex;
      gap: 2rem;
    }


    /* Barre laterale */
    .sidebar-toc {
      flex: 0 0 250px;
      position: sticky;
      top: 1rem;
      background: #f9f9f9;
      padding: 1rem;
      border-radius: 4px;
    }

    /* Hero tooltip */
    .hero-container {
      position: relative;
      display: block;
      width: 100%;
    }

    .hero-bg { display: block; width: 100%; height: auto; }

    .hero-tooltip {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) translateY(-5px);
      background: rgba(0, 77, 113, 0.9);
      color: white;
      padding: 12px 20px;
      border-radius: 6px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .hero-container:hover .hero-tooltip {
      visibility: visible;
      opacity: 1;
      transform: translate(-50%, -50%) translateY(0);
    }
       /* ===== STYLES DESKTOP (769px et plus) ===== */
      @media (min-width: 769px) {
        /* (Vos styles desktop existants restent ici) */
        
        /* Effet respiration sur desktop */
        .card:hover {
          transform: scale(1.02);
          box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
      }
  }

        /* ===== MEDIA QUERY MOBILE (768px et moins) ===== */
  @media (max-width: 768px) {
  /* ===== STRUCTURE GLOBALE ===== */
  .page-layout, .zone-layout {
    display: block;
  }
  
  .sidebar-toc {
    position: static;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .container, .ville-flex {
    flex-direction: column;
  }

  /* ===== MENU MOBILE ===== */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background: #004d71;
    position: relative;
    box-sizing: border-box;
  }

  .menu-toggle {
    position: absolute;
    opacity: 0;
  }

  .menu-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 8px 15px;
    cursor: pointer;
  }

  .menu-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }

  #menu-toggle:checked + .menu-icon img {
    transform: rotate(90deg);
  }

  .menu-label {
    color: white;
    font-weight: bold;
    font-size: 0.9em;
    transition: color 0.2s ease;
  }

  #menu-toggle:checked + .menu-icon .menu-label {
    color: #7fb8ff;
  }

  .menu {
    display: none;
    width: 100%;
    background: #003d5c;
    animation: fadeIn 0.3s ease-out;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #menu-toggle:checked ~ .menu {
    display: block;
  }

  /* ===== ITEMS DE MENU ===== */
  .menu > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .menu > li > a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
  }

  /* ===== SOUS-MENUS ===== */
  .submenu-details {
    position: relative;
    width: 100%;
  }

  .submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px !important;
    color: white;
    text-decoration: none;
    background: transparent !important;
  }

  .submenu {
    display: none;
    padding-left: 0;
    margin: 0;
    background: #002b45;
    list-style: none;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
  }

  .submenu-details[open] .submenu,
  .submenu-details.open .submenu {
    display: block;
    animation: slideDown 0.4s ease-out;
  }

  .submenu li a {
    display: block;
    padding: 12px 20px 12px 40px !important;
    position: relative;
    color: #fff;
    border-left: 3px solid transparent;
    transition: all 0.2s;
  }

  .submenu li a::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.7;
  }

  /* Flèches indicateurs */
  .submenu-toggle::after {
    content: "▾";
    font-size: 1.1em;
    margin-left: 10px;
    transition: all 0.3s;
  }

  .submenu-details.open .submenu-toggle::after {
    content: "▴";
  }

  /* ===== COMPOSANTS SPÉCIFIQUES ===== */
  .mobile-toc-toggle {
    display: block;
    background: #eaf2f6;
    padding: 0.75rem 1rem;
    margin: 1rem auto;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    color: #005f66;
    font-weight: bold;
  }

  .page-strategie .zone-float.vertical {
    bottom: 230px;
  }

  /* ===== CARTES ===== */
  .card {
    margin: 0 !important;
    padding: 10px !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .card:active {
    transform: scale(1.01);
  }

  /* ===== TABLES ===== */
  table.tableau-synthese, 
  .methodo-table,
  table.tableau-synthese thead,
  .methodo-table thead {
    display: block;
    width: 100%;
  }

  table.tableau-synthese thead,
  .methodo-table thead {
    display: none;
  }

  table.tableau-synthese td,
  .methodo-table td {
    display: block;
    padding-left: 36px;
    position: relative;
  }

  table.tableau-synthese td::before,
  .methodo-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    font-weight: bold;
    color: #2c3e50;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes slideDown {
    from { 
      opacity: 0;
      transform: translateY(-10px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* test temporaire */
     .zone-layout {
    display: block !important;
    flex-direction: column !important;
  }

  
  .sidebar-toc {
    width: 100%;
   /*  position: static !important; */
    margin-bottom: 1.5rem;
  }  

}
  

  /* Menu centré sur grand ecran 1024 */
  @media (min-width: 1024px) {
    .drawer-zone {
      left: 33.33%;
      width: 33.33%;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
    }
  }

  /* === Mini-sections par ville === */
  .detail-ville {
    background: #ffffff;
    border-left: 4px solid #007B8A;
    padding: 20px 24px;
    margin-bottom: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .detail-ville h3 {
    margin-top: 0;
    color: #005f66;
    font-size: 1.3em;
  }

  .detail-ville p {
    margin: 8px 0 0;
    color: #333;
    line-height: 1.5;
  }

  .toc-ville {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #fff;
    border-left: 4px solid #007B8A;
    padding: 12px 16px;
    margin: 24px 0 40px;
    border-radius: 6px;
    font-size: 0.95em;
  }

  .toc-ville strong {
    color: #005f66;
  }

  .toc-ville a {
    color: #007B8A;
    text-decoration: none;
  }

  .toc-ville a:hover {
    text-decoration: underline;
  }

  /* === Section FAQ : fond et encadrement === */
  .faq-section {
    background: #f0fafc;        /* bleu très pâle */
    border: 1px solid #d0e7ed;  /* liseré clair */
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .faq-section h2 {
    margin-top: 0;
    color: #005f66;
  }

  /* --- Mini-menu FAQ --- */
  .faq-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
    margin: 20px 0;
  }

  .faq-nav a {
    font-size: 0.95em;
    color: #007B8A;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
  }

  .faq-nav a:hover {
    background: rgba(0,123,138,0.1);
  }

  /* --- Accordéon Questions --- */
  .faq-list details {
    margin-bottom: 12px;
    background: #ffffff;
    border: 1px solid #aad6e4;
    border-radius: 6px;
    overflow: hidden;
  }

  .faq-list summary {
    cursor: pointer;
    padding: 14px 18px;
    font-weight: bold;
    color: #005f66;
    list-style: none;  
    position: relative;
  }

  .faq-list summary::marker {
    display: none;
  }

  .faq-list summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    font-size: 1.2em;
    line-height: 1;
    transition: transform 0.2s;
  }

  .faq-list details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
  }

  /* Réponse */
  .faq-list .answer {
    padding: 14px 18px 18px;
    border-top: 1px solid #aad6e4;
    color: #333;
    line-height: 1.5;
  }

  /* === Mise en page 2 colonnes image + texte zone intervention === */
  .ville-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }

  .ville-photo {
    flex: 1 1 30%;
    max-width: 300px;
    text-align: center;
  }
  .ville-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
  }
  .ville-photo figcaption {
    font-size: 0.85em;
    color: #555;
    margin-top: 6px;
  }

  .ville-texte {
    flex: 2 1 65%;
  }

  .ville-texte h3 {
    margin-top: 0;
    color: #005f66;
    font-size: 1.3em;
  }

  .ville-texte p {
    margin-top: 8px;
    line-height: 1.6;
    color: #333;
  }

  /* === Bouton retour haut avec flèche SVG === */
  .back-to-top {
    position: fixed;
    bottom: 24px;
    right: 180px;
    z-index: 999;
    background: #007B8A;
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
  }

  .back-to-top:hover {
    background: #005f66;
    transform: translateY(-2px);
  }

  .back-to-top svg {
    display: block;
    margin: auto;
  }


  /* === Bouton flottant Zone d’intervention === */
  .zone-float {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 999;
  }


  .zone-toggle img {
    width: 28px;
    height: 28px;
    filter: invert(1);
    transition: transform 0.3s ease;
  }


  /* Hover effect */
  .zone-toggle:hover {
    width: 280px;
    background: #005f66;
  }

  .zone-toggle:hover img {
    transform: scale(1.1);
  }


  .zone-toggle img {
    width: 24px;
    height: 24px;
    filter: invert(1);
  }

  .zone-label {
    color: white;
    font-size: 0.95em;
    white-space: nowrap;
  }

  .zone-toggle img {
    width: 24px;
    height: 24px;
    filter: invert(1);
  }

  .zone-label {
    color: white;
    font-size: 0.95em;
    white-space: nowrap;
  }

  .zone-panel {
    display: none;
    margin-top: 8px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, width 0.3s ease;
  }

  .zone-panel a {
    display: block;
    text-align: center;
  }

  .zone-panel a img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center center;
  }


  .nav-offres {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px auto;
    padding: 10px 0;
  }

  .nav-offres a {
    background: #007B8A;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav-offres a:hover {
    background: #005f66;
    transform: translateY(-2px);
  }

 
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }



  .zone-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #007B8A;
    padding: 10px 14px;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }

  .zone-float.vertical {
    position: fixed;
    top: var(--zone-button-top, 160px);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 999;
  }


  /* === Zone-intervention : layout en 2 colonnes sticky === */
  .zone-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }

  .zone-layout .sidebar-toc {
    flex: 0 0 250px;
    position: sticky;
    top: 1.5rem;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.95em;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .zone-layout .sidebar-toc strong {
    display: block;
    margin-bottom: 0.6em;
    color: #005f66;
  }

  .zone-layout .sidebar-toc ul {
    padding-left: 20px;
  }

  .zone-layout .sidebar-toc li {
    margin-bottom: 6px;
  }

  .zone-layout .sidebar-toc a {
    color: #007B8A;
    text-decoration: none;
  }

  .zone-layout .sidebar-toc a:hover {
    text-decoration: underline;
  }

  /* Colonne droite = contenu page */
  .zone-layout .content {
    flex: 1;
    min-width: 0;
  }

   /* Image cliquable : transition et opacité au hover */
  .detail-ville .ville-photo a img {
    transition: opacity 0.2s;
  }
  .detail-ville .ville-photo a:hover img {
    opacity: 0.85;
  }

  /* Titre cliquable : style de base et hover */
  .detail-ville h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .detail-ville h3 a:hover {
    text-decoration: underline;
    color: #005f66;
  }

  /* point de focalisation quand un utilisateur  au clavier touch TAB */
  a:focus, button:focus {
    outline: 2px solid #005f66;
    outline-offset: 2px;
  }

  /* Menus risques */

  .risques-cyber h2 {
    margin-top: 2rem;
    font-size: 1.5em;
    color: #005f66;
    border-bottom: 2px solid #005f66;
    padding-bottom: 0.5em;
  }

  .risques-cyber details {
    border: 1px solid #cdd9e5;
    border-radius: 6px;
    margin: 1rem 0;
    background: #f8fafc;
    transition: all 0.3s ease;
  }

  .risques-cyber summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    font-weight: bold;
    cursor: pointer;
    color: #003c47;
    list-style: none;
  }

  .risques-cyber summary svg {
    width: 1rem;
    height: 1rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    stroke: #005f66;
    stroke-width: 2;
    fill: none;
  }

  .risques-cyber details[open] summary svg {
    transform: rotate(180deg);
  }

  .risques-cyber ul {
    padding: 0.75rem 1.5rem;
    margin: 0;
  }

  .risques-cyber li {
    margin-bottom: 0.5em;
    color: #333;
    font-size: 0.95em;
  }


  /* pour sous Menus risques */
  .mobile-toc-toggle {
    display: none;
  }


  /* pour sous boutton flottant pages offres detailles  */
  .page-strategie .zone-float.vertical {
    top: auto;
    bottom: 550px;
  }

  /* 🧭 Bouton d'ouverture du tableau détaillé */
  details.comparatif-details summary {
    font-weight: bold;
    font-size: 1em;
    color: #006699;
    cursor: pointer;
    margin-top: 20px;
  }

  /* 🎯 Icône dynamique dans le bouton summary */
  details.comparatif-details summary::after {
    content: " ▼";
    font-size: 1em;
    color: #006699;
    margin-left: 6px;
  }

  details.comparatif-details[open] summary::after {
    content: " ▲";
  }

  /* 🎨 Fond clair pour la section comparatif */
  .section-light {
    background-color: #f2f7fb; /* plus visible que #f9fbfc */
    padding: 40px 20px;
    border-top: 1px solid #dde5eb;
  }

  /* 🎬 Animation d’ouverture du tableau détaillé */
  details.comparatif-details[open] .table-wrapper {
    animation: fadeIn 0.6s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* ombre légère */
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* 🖱️ Hover sur les lignes du tableau */
  table.comparatif-services tbody tr:hover {
    background-color: #eaf4fc;
    transition: background-color 0.3s ease;
  }

  /* 🧩 Cartes cliquables offres */
  .cartes-offres {
    background-color: #f9fbfc;
    padding: 40px 20px;
    border-top: 1px solid #dde5eb;
    text-align: center;
  }

  .cartes-offres h2 {
    margin-bottom: 10px;
  }

  /* Alignement des cartes sur mobile */
  .cartes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .carte-offre {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    background-color: #ffffff;
    border: 1px solid #dde5eb;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: #2c3e50;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .carte-offre:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }

  .carte-offre img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .carte-offre h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
  }

  .carte-offre p {
    font-size: 0.95em;
    margin-bottom: 15px;
  }

  .cta-carte {
    font-weight: bold;
    color: #006699;
    text-decoration: underline;
  }

  /* Espacement entre les cartes et le texte d’intro */
  .cartes-offres {
    margin-bottom: 40px;
  }

  /* 🛡️ Badge NIS2-ready */
  .badge-nis2 {
    background-color: #006699;
    color: #ffffff;
    font-size: 0.75em;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
  }

  /* distinguer visuellement  dans offres “Vue d’ensemble” des autres */
  .submenu .menu-overview {
    font-weight: bold;
    color: #006699;
    background-color: #f0f8ff;
    padding: 6px 12px;
    border-radius: 4px;
  }

  /* Effet de survol */
  .submenu .menu-overview:hover {
    background-color: #e0f0ff;
    text-decoration: underline;
  }

  /* Section avec background-image */
  .hero-bg {
    width: 100%;
    height: 60vh;
    background-image: url('/images/ma-carte.webp');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* Menu slide up sur clic image Accueil */

  .drawer-zone {
    position: fixed;
    bottom: -100%;
    left: 50%;
    width: 60%;
    max-height: 80vh;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 16px;
    z-index: 9999;
    transition: bottom 0.4s ease-out;
    overflow-y: auto;
  }

  .drawer-zone.show {
    bottom: 0;
  }

  .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
  }

  .close-drawer {
    font-size: 24px;
    cursor: pointer;
    color: #333;
  }

  .drawer-content ul {
    list-style: none;
    padding-left: 0;
  }

  .drawer-content ul li a {
    display: block;
    padding: 6px 0;
    color: #0056b3;
    text-decoration: none;
  }

  .drawer-content ul li a:hover {
    text-decoration: underline;
  }

  details summary {
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
  }

  /* Message cliquez pour plus d'infos */

  .hero-tooltip {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
  }

  .hero-bg:hover + .hero-tooltip {
    opacity: 1;
  }


  .hero-bg {
    position: relative;
  }

  /* Effet “vibration” au survol */
  .hero-bg {
    transition: transform 0.3s ease;
  }

  .hero-bg:hover {
    transform: scale(1.05);
    animation: shake 0.3s;
    animation-iteration-count: 1;
  }

  @keyframes shake {
    0%   { transform: scale(1.05) translate(0px, 0px); }
    25%  { transform: scale(1.05) translate(2px, -2px); }
    50%  { transform: scale(1.05) translate(-2px, 2px); }
    75%  { transform: scale(1.05) translate(2px, 2px); }
    100% { transform: scale(1.05) translate(0px, 0px); }
  }

 
  /*   déclencher vibration au toucher */
  .hero-bg.active {
    animation: shakeZoom 0.5s ease-out;
  }

/*   -  sémantique du titre avec <h3> + affichage sur une seule ligne */
      .feature-inline {
    display: flex;
    align-items: center;
    gap: 0.5em;
    flex-wrap: wrap; /* utile si l'écran est petit */
  }


/*  numéro et le titre de l’étape  sur la même ligne, conserves le balisage schema.org/HowToStep pour le SEO 


    .step-inline h3 {
      display: flex;
      align-items: center;
      gap: 0.5em;
      margin: 0;
    }

    .step-number {
      font-weight: bold;
      font-size: 1.2em;
      color: #2c3e50;
    }

    .step-title {
      font-weight: normal;
      font-size: 1.1em;
    }


      .next-step-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .next-step-card h3,
    .next-step-card p {
      margin: 0;
    }

    .arrow {
      margin-left: 1rem;
    }    */

  /*  ne passe pas à la ligne à tort */


    .step-inline {
        display: block;       /* Force le passage à la ligne */
        word-wrap: break-word; /* Césure des mots longs */
        max-width: 100%;      /* Évite les débordements */
    }

        /* Zoom au survol uniquement sur écrans larges telechargement Livre blanc */
    @media screen and (min-width: 768px) {
      .zoom-on-hover img {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .zoom-on-hover:hover img {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      }
      }

        /* Mise en forme Télecvargmeent livre blanc  */
        .download-form {
          max-width: 600px;
          margin: 2rem auto;
          padding: 1rem;
          background-color: #f9f9f9;
          border-radius: 8px;
        }

        .form-group {
          margin-bottom: 1.2rem;
        }

        .form-group label {
          display: block;
          font-weight: bold;
          margin-bottom: 0.4rem;
        }

        .form-group input {
          width: 100%;
          padding: 0.6rem;
          border: 1px solid #ccc;
          border-radius: 4px;
        }

        .cta-button {
          display: inline-block;
          padding: 0.8rem 1.6rem;
          background-color: #0056b3;
          color: #fff;
          font-weight: bold;
          border: none;
          border-radius: 4px;
          cursor: pointer;
          transition: background-color 0.3s ease;
        }

        .cta-button:hover {
          background-color: #003d80;
        }
    