/* Basis typografie en spacing */
body {
  overflow-x: hidden;
  max-width: 100vw;
}

h1 {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
}

h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

p, li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

li {
  margin-bottom: 0.75rem;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.update-date {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--dark-lighter, rgba(0,0,0,0.05));
  border-radius: 0.5rem;
  border-left: 3px solid var(--primary);
}

.table-responsive {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.table {
  color: var(--text-primary);
  border-color: var(--border-color, rgba(255,255,255,0.1));
  margin-bottom: 0;
}

.table thead {
  background: var(--dark-card, rgba(0,0,0,0.1));
  border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
}

.table th {
  color: var(--text-primary);
  font-weight: 600;
  padding: 1rem;
  border-color: var(--border-color, rgba(255,255,255,0.1));
}

.table td {
  padding: 1rem;
  border-color: var(--border-color, rgba(255,255,255,0.1));
  color: var(--text-secondary);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--dark-lighter, rgba(0,0,0,0.03));
}

.contact-info {
  background: var(--dark-card, rgba(0,0,0,0.05));
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 3px solid var(--primary);
  margin: 2rem 0;
}