/* ===================== */
/* FOND GLOBAL */
/* ===================== */
.section-legal {
  background: linear-gradient(180deg, #f4f6fb 0%, #eef2f7 100%);
  padding: 70px 0;
}


/* ===================== */
/* CARTE CENTRALE */
/* ===================== */
.legal-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, .08);
  padding: 48px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.legal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(16, 24, 40, .12);
}


/* ===================== */
/* HEADER */
/* ===================== */
.legal-header {
  margin-bottom: 10px;
}

.legal-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0;
}

.legal-sub {
  color: #667085;
  font-size: 0.95rem;
}


/* ===================== */
/* BADGE RGPD */
/* ===================== */
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f2d2a9;
  color: #ff8800;
  border: 1px solid rgba(255, 138, 4, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
}


/* ===================== */
/* BLOCS */
/* ===================== */
.legal-block {
  margin-bottom: 26px;
}

.legal-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0a2540;
}

.legal-block p {
  color: #475467;
  margin: 0;
  line-height: 1.6;
}

.legal-block i {
  margin-right: 6px;
  color: #ff8800;
}


/* ===================== */
/* SOUS BLOCS */
/* ===================== */
.legal-subblock {
  margin-top: 10px;
  padding-left: 6px;
  color: #475467;
}

.legal-subblock ul {
  margin-top: 6px;
}


/* ===================== */
/* DIVIDER */
/* ===================== */
.legal-divider {
  margin: 30px 0;
  border-top: 1px solid #eef2f6;
}


/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 768px) {

  .legal-card {
    padding: 26px;
  }

  .legal-header h2 {
    font-size: 1.6rem;
  }
}

