/* ========================================
   PAGES LÉGALES - Style unifié
   ======================================== */

/* ========================================
   SECTION LÉGALE
   ======================================== */

.section-legal {
  padding: 80px 0 100px;
  background-color: #F5FBFA;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: #6b8a99;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(30, 58, 76, 0.1);
}

.legal-intro {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: #4a6572;
  margin-bottom: 48px;
  padding: 24px;
  background: rgba(95, 191, 171, 0.08);
  border-radius: 12px;
  border-left: 3px solid #5FBFAB;
}

/* ========================================
   ARTICLES LÉGAUX
   ======================================== */

.legal-article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(30, 58, 76, 0.08);
}

.legal-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-article h2 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: #1e3a4c;
  margin-bottom: 20px;
}

.legal-article h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #2d4a5e;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-article p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #4a6572;
  margin-bottom: 16px;
}

.legal-article p:last-child {
  margin-bottom: 0;
}

.legal-article ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.legal-article li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #4a6572;
  padding: 8px 0 8px 24px;
  position: relative;
}

.legal-article li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: #5FBFAB;
  border-radius: 50%;
}

.legal-article li strong {
  font-weight: 600;
  color: #1e3a4c;
}

.legal-article a {
  color: #5FBFAB;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.legal-article a:hover {
  color: #4da897;
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1023px) {
  .section-legal {
    padding: 60px 0 80px;
  }

  .legal-article h2 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .section-legal {
    padding: 48px 0 60px;
  }

  .legal-content {
    padding: 0 8px;
  }

  .legal-intro {
    padding: 20px;
    font-size: 15px;
  }

  .legal-article {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .legal-article h2 {
    font-size: 18px;
  }

  .legal-article p,
  .legal-article li {
    font-size: 14px;
  }
}
