/* =========================================================
   MENTIONS LÉGALES – PAGE
   ========================================================= */

.legal-content {
  margin-top: 4rem;
  margin-bottom: 6rem;
  max-width: 900px;
}

/* =========================================================
   PAGE HEADER
   ========================================================= */

.page-header {
  background: linear-gradient(135deg, #0a2540, #002244);
  color: #ffffff;
  padding: 5rem 2rem 3.5rem;
  margin-top: 72px; /* compense header fixe */
  text-align: center;
}

.page-header h1 {
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-header p {
  color: #e5e7eb;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================================
   ARTICLES LÉGAUX
   ========================================================= */

.legal-content article {
  background: #ffffff;
  padding: 2.2rem 2.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-content article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Titres */
.legal-content h2 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: #0a2540;
}

/* Texte */
.legal-content p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* Liens */
.legal-content a {
  color: #00aaff;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #0a2540;
}

/* =========================================================
   RESPONSIVE – TABLETTE
   ========================================================= */

@media (max-width: 900px) {
  .page-header h1 {
    font-size: 2.2rem;
  }

  .legal-content {
    margin-top: 3rem;
  }

  .legal-content article {
    padding: 2rem;
  }
}

/* =========================================================
   RESPONSIVE – MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .page-header {
    padding: 4rem 1.5rem 3rem;
  }

  .page-header h1 {
    font-size: 1.9rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .legal-content article {
    padding: 1.6rem 1.4rem;
  }

  .legal-content h2 {
    font-size: 1.25rem;
  }
}

/* Boutons */
.btn {
  background: #8d8d8d;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 0px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Effet hover sur bouton */
.btn:hover {
  background: #0088cc;
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}