/* Styles spécifiques à la politique de confidentialité */

.confidentialite {
  padding-top: 150px;
  padding-bottom: 60px;
}

.confidentialite h1 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 2.5rem;
  text-align: center;
}

.last-updated {
  text-align: center;
  margin-bottom: 30px;
  color: #777;
  font-style: italic;
}

.privacy-section {
  margin-bottom: 40px;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.privacy-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.privacy-section ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.privacy-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.privacy-section a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.privacy-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .confidentialite {
    padding-top: 120px;
  }
  
  .confidentialite h1 {
    font-size: 2rem;
  }
  
  .privacy-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .confidentialite h1 {
    font-size: 1.8rem;
  }
  
  .privacy-section h2 {
    font-size: 1.3rem;
  }
}