/* ===== PAGE MENTIONS LÉGALES - STYLES SPÉCIFIQUES ===== */

/* Page Hero */
.page-hero {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.02;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Main Content */
.main-content {
  background: #f5f5f5;
  max-width: 900px;
  margin: 40px auto;
  padding: 60px 80px;
}

/* Legal Content */
.legal-content {
  text-align: justify;
  line-height: 1.8;
}

.legal-content h2 {
  color: #ff6600;
  font-size: 1.8em;
  font-weight: 600;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6600;
}

.legal-content h2:first-of-type {
  margin-top: 20px;
}

.legal-content h3 {
  color: #2c3e50;
  font-size: 1.2em;
  font-weight: 600;
  margin: 25px 0 15px 0;
}

.legal-content p {
  margin-bottom: 15px;
  color: #555;
}

.legal-content strong {
  color: #2c3e50;
  font-weight: 600;
}

.legal-content a {
  color: #ff6600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #cc5200;
  text-decoration: underline;
}

/* Info Block */
.info-block {
  background: #f8f9fa;
  border-left: 4px solid #ff6600;
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 4px;
}

.info-block p {
  margin-bottom: 8px;
  color: #2c3e50;
}

.info-block p:last-child {
  margin-bottom: 0;
}

/* Separator */
.separator {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 30px 0;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE SPÉCIFIQUE PAGE MENTIONS LÉGALES ===== */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .main-content {
    margin: 20px auto;
    padding: 40px 30px;
  }

  .legal-content h2 {
    font-size: 1.5em;
    margin: 30px 0 15px 0;
  }

  .legal-content h3 {
    font-size: 1.1em;
    margin: 20px 0 10px 0;
  }

  .info-block {
    padding: 15px 20px;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 30px 20px;
  }

  .legal-content {
    text-align: left;
  }

  .legal-content h2 {
    font-size: 1.3em;
  }

  .legal-content h3 {
    font-size: 1em;
  }
}