.tab-container {
    width: 100%;
    margin-top: 3em;
  }
  
  .tab-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .tab-button {
    position: relative;
    padding: 1.2em;
    cursor: pointer;
    border: none;
    background: #fff;
    font-size: 2em;
    align-items: center;

  }
  
  .tab-button.active {
    background: #fff;
    color: #000;
  }
  .tab-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #18272F;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
  }
 .separation::before {
    content: '';
    position: absolute;
    color: #666;
    width: 3px; /* Largeur des lignes de séparation */
    height: 50%; /* Hauteur des lignes de séparation */
    background-color: #18272F; /* Couleur des lignes de séparation */
    transform: skewX(-30deg); /* Inclinaison des lignes */
    top: 25%;
    left: 0;
  }
  .tab-button:hover::after {
    transform-origin: left;
    transform: scaleX(1);
  }
  
  
  .tab-content {
    background: #fff;
    color: #000;
    font-size: 1.4em;
    line-height: 1.6em;
  }
  
  .tab-pane {
    display: none;
    padding: 1em 10em 1em 10em;
  }
  
  .tab-pane.active {
    display: block;
  }




