/* Styles responsifs pour terms-of-use.html */

/* Tablettes */
@media (max-width: 992px) {
  .terms-container {
    max-width: 90%;
    margin: 4rem auto;
    padding: 25px;
  }
  
  .terms-container h1 {
    font-size: 28px;
  }
  
  .terms-section {
    margin-bottom: 25px;
  }
  
  .terms-section h2 {
    font-size: 20px;
  }
  
  .terms-section h3 {
    font-size: 17px;
  }
}

/* Mobiles larges */
@media (max-width: 768px) {
  /* Conteneur principal */
  .terms-container {
    max-width: 100%;
    margin: 2rem auto;
    padding: 20px;
    box-shadow: none;
    border-radius: 0;
  }
  
  .terms-container h1 {
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  
  /* Sections */
  .terms-section {
    margin-bottom: 20px;
  }
  
  .terms-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .terms-section h2 i {
    margin-right: 8px;
  }
  
  .terms-section h3 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 8px;
  }
  
  .terms-section p {
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 15px;
  }
  
  .terms-section ul {
    margin-left: 15px;
    margin-bottom: 12px;
  }
  
  .terms-section li {
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 15px;
  }
  
  .terms-date {
    font-size: 14px;
    margin-top: 30px;
  }
  
  /* Ajout d'espace pour la barre de recherche */
  .spacer {
    height: 40px;
    display: block;
  }
}

/* Petits écrans mobiles */
@media (max-width: 576px) {
  .terms-container {
    padding: 15px;
    margin: 1.5rem auto;
  }
  
  .terms-container h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .terms-section {
    margin-bottom: 15px;
  }
  
  .terms-section h2 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .terms-section h3 {
    font-size: 15px;
    margin-top: 12px;
    margin-bottom: 6px;
  }
  
  .terms-section p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .terms-section ul {
    margin-left: 12px;
  }
  
  .terms-section li {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .terms-date {
    font-size: 13px;
    margin-top: 25px;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .terms-container {
    padding: 10px;
  }
  
  .terms-container h1 {
    font-size: 20px;
  }
  
  .terms-section h2 {
    font-size: 16px;
  }
  
  .terms-section h3 {
    font-size: 14px;
  }
  
  .terms-section p,
  .terms-section li {
    font-size: 13px;
  }
  
  .terms-date {
    font-size: 12px;
  }
}