/* Protection contre le défilement horizontal */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Adaptation des couleurs pour une lecture optimale */
.privacy-section {
  background-color: var(--card-bg);
  border-left: 3px solid var(--primary);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.privacy-section h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-section h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.table-responsive {
  margin: 1.5rem 0;
}

.table {
  color: var(--text-primary);
  border-color: var(--card-border);
}

.table thead {
  background: var(--dark);
  color: var(--light);
  border-bottom: 2px solid var(--primary);
}

.table tbody tr {
  border-bottom: 1px solid var(--card-border);
}

.table tbody tr:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
}

.last-update {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 2rem;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

strong {
  color: var(--primary);
}