/**
 * Styles pour les pages légales
 */

.legals {
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.6;
  color: #333;
  max-width: 80vw;
}

.legals h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}

.legals p,
.legals ul,
.legals ol {
  margin-bottom: 1.25rem;
}

.legals a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legals a:hover {
  color: #004080;
  text-decoration: underline;
}

.legals strong {
  font-weight: 600;
}

.legals em {
  font-style: italic;
}

@media (max-width: 768px) {
  .legals {
    max-width: 90vw;
  }
  
  .legals h1 {
    font-size: clamp(1rem, 1rem + 1vw, 2.5rem);
  }
}