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