.tarifs-section {
    position: relative;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .tarifs-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-family: "Comfortaa", sans-serif;
  }

  .tarifs-section p {
    margin: 5px 0;
    font-size: 16px;
    font-weight: bold;
    color: #12086F;
  }

  h2 {
    font-size: 25px;
    margin: 30px 0 15px 0;
    font-family: 'Comfortaa', sans-serif;
  }

  /* Tableau */
  table {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  table thead {
    background-color: #12086F;
    color: white;
    font-family: 'Comfortaa', sans-serif;
  }

  table th, table td {
    padding: 12px 15px;
    border: 1px solid #C4C1DB;
    text-align: center;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
  }

  table tr:nth-child(even) {
    background-color: #fafafa;
  }

  /*photo*/

  .photol {
    width: 250px;
    position: absolute;
    transform: rotate(-5deg);
    right: 20px;
    top: 90px;
    z-index: -1;
  }
  .hidden{
  display: none;
}

/* Version mobile */
@media (max-width: 1620px) {
  img {
    display: none;
  }
}
@media (max-width: 680px) {
  table, thead, tbody, th, td, tr {
    display: block; /* transforme chaque cellule en bloc */
  }

  thead {
    display: none; /* cache l’en-tête */
  }

  tr {
    margin-bottom: 15px;
  }

  td {
    text-align: left;
    padding-left: 50%;
    position: relative;
    border: none; /* facultatif : enlève la bordure pour mobile */
  }
  .nb {
    background-color: #12086F;
    color: white;
  }

  td::before {
    content: attr(data-label); /* affiche le nom de la colonne */
    position: absolute;
    left: 10px;
    font-weight: bold;
  }
}



