#fh5co-fonctionnement {
  position: relative;
  padding: 140px 10px 10px 10px; /* top right bottom left */
}

/* Conteneur principal */
.fonctionnement-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Titres principaux */
  .fonctionnement-content h1, 
  .fonctionnement-content h2 {
    color: #542e2a;
    font-weight: bold;
  }
  
  /* H1 (Titre principal) */
  .fonctionnement-content h1 {
    font-size: var(--fs-h1);
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* H2 (Sous-titres) */
  .fonctionnement-content h2 {
    font-size: var(--fs-h2);
    margin-top: 40px;
    margin-bottom: 15px;
  }
  
  /* Paragraphes */
  .fonctionnement-content p {
    font-size: var(--fs-body);
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Liste à puces */
  .fonctionnement-content ul {
    margin-left: 20px;
  }
  
  .fonctionnement-content ul li {
    font-size: var(--fs-body);
    margin-bottom: 10px;
  }
  
  /* Bouton */
  .button-container {
    text-align: center;
    margin-top: 40px;
  }
  
  .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
  font-size: var(--fs-btn);
    color: white;
    background-color: #542e2a;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 2px 1px 6px rgba(0, 0, 0, 0.3);

  }
  
  .btn-secondary:hover {
    background-color: #3a1f1b;
  }
  
  
  
  /* Empêcher la coupure des mots et assurer un bon retour à la ligne */
  .fonctionnement-content p,
  .fonctionnement-content h1,
  .fonctionnement-content h2,
  .fonctionnement-content ul li {
      white-space: normal;
      word-break: keep-all;  /* Empêche la coupure des mots */
      overflow-wrap: anywhere; /* Forcer un retour à la ligne au bon endroit */
      hyphens: manual; /* Désactive la césure automatique */
  }
  