/* --- Mentions légales --- */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #222;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

#hero-ml {
  position: relative;
  background: url('https://images.unsplash.com/photo-1604328698692-f76ea9498e76?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

#hero-ml .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

#hero-ml .hero-text {
  position: relative;
  z-index: 1;
}

#hero-ml h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
}

.legal-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.legal-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 2rem;
  color: #333;
}

.legal-box p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #555;
}

.legal-box a {
  color: #0066cc;
  text-decoration: none;
}

.legal-box a:hover {
  text-decoration: underline;
}

.update-date {
  font-style: italic;
  color: #888;
  margin-top: 1.5rem;
}

.site-footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #ddd;
}

.site-footer a {
  color: #333;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  #hero-ml h1 {
    font-size: 1.8rem;
  }

  .legal-box {
    padding: 1.5rem;
  }
}
