/* ========== MENTIONS LÉGALES ========== */
.mentions-legales {
  background-color: var(--blanc, #ffffff);
  padding: 5rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #2c3e50;
}

.mentions-legales .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* TITRE PRINCIPAL */
.mentions-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--bleu, #2c3e50);
  margin-bottom: 0.5rem;
  position: relative;
}

.mentions-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--bleu-clair, #3498db);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.version {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 3rem;
}

/* BLOCS DE SECTIONS */
.mentions-legales section {
  background-color: #f7f9fa;
  border-left: 4px solid var(--bleu-clair, #3498db);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* TITRES DE SECTIONS */
.mentions-legales h2 {
  font-size: 1.5rem;
  color: var(--bleu-clair, #3498db);
  margin-bottom: 0.7rem;
}

/* PARAGRAPHES */
.mentions-legales p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* LIENS */
.mentions-legales a {
  color: var(--bleu-clair, #3498db);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.mentions-legales a:hover {
  color: #1d6fa5;
}
