/* ==========================================================================
   FEUILLE DE STYLE POUR LES PAGES JURIDIQUES (legales.css)
   ========================================================================== */

.legal-page-hero {
  position: relative;
  background-color: var(--color-primary, #02182b);
  padding: 140px 24px 80px;
  text-align: center;
  overflow: hidden;
}

/* Lueur verte chartée */
.legal-page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(80, 184, 72, 0.15) 0%, rgba(80, 184, 72, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.legal-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
  position: relative;
  z-index: 2;
}

.legal-hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-accent, #00AEEF);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Contenu de la page légale */
.legal-content-section {
  padding: 80px 24px;
  background-color: #fafafa;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 60px;
  box-shadow: 0 15px 40px rgba(2, 24, 43, 0.05);
}

.legal-article {
  font-family: 'DM Sans', sans-serif;
  color: #444444;
  line-height: 1.8;
  font-size: 16px;
}

.legal-article h2 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary, #02182b);
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
}

.legal-article h2:first-of-type {
  margin-top: 0;
}

.legal-article h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-article p {
  margin-bottom: 20px;
}

.legal-article ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-article li {
  margin-bottom: 8px;
}

.legal-article strong {
  color: var(--color-primary, #02182b);
}

.legal-date {
  font-size: 14px;
  color: #888888;
  font-style: italic;
  margin-bottom: 30px;
  display: block;
}

@media (max-width: 768px) {
  .legal-page-hero {
    padding: 120px 20px 60px;
  }
  .legal-hero-title {
    font-size: 32px;
  }
  .legal-container {
    padding: 30px 24px;
  }
  .legal-content-section {
    padding: 40px 16px;
  }
}
