/*
 * Feuille commune aux pages légales (mentions, confidentialité, CGU).
 *
 * Volontairement séparée de la vitrine : ces pages n'ont ni hero, ni grille, ni
 * animation — seulement du texte long à lire. Une colonne étroite, une
 * hiérarchie nette, rien qui distraie.
 */

:root {
  --navy: #1e3a8a;
  --vert: #0d9488;
  --encre: #1e2230;
  --encre-2: #4b5568;
  --gris: #8a91a3;
  --ligne: #e5e7ef;
  --fond: #f7f8fb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--fond);
  color: var(--encre);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.7;
  font-size: 16px;
}

/* Le trait de marque, comme dans l'application. */
.bandeau {
  background: #fff;
  border-bottom: none;
  position: relative;
}
.bandeau::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--vert), var(--navy));
}
.bandeau-in {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.marque {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
}
.marque svg { width: 30px; height: 30px; }
.retour { font-size: .9rem; color: var(--encre-2); text-decoration: none; font-weight: 600; }
.retour:hover { color: var(--navy); }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 .4rem;
  letter-spacing: -.01em;
}
.maj { color: var(--gris); font-size: .85rem; margin: 0 0 2.5rem; }

h2 {
  font-size: 1.15rem;
  margin: 2.6rem 0 .6rem;
  padding-inline-start: .7rem;
  position: relative;
}
h2::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: .2em;
  bottom: .2em;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--vert), var(--navy));
}
h3 { font-size: 1rem; margin: 1.6rem 0 .3rem; }

p, li { color: var(--encre-2); }
ul { padding-inline-start: 1.2rem; }
li { margin: .3rem 0; }
a { color: var(--navy); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: .93rem;
}
th, td {
  text-align: start;
  padding: .6rem .7rem;
  border-bottom: 1px solid var(--ligne);
  vertical-align: top;
}
th { color: var(--encre); font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; }

/* Bloc en attente d'information : il doit sauter aux yeux du propriétaire du
   site, pas se fondre dans le texte. */
.a-completer {
  background: #fff8e6;
  border: 1px solid #f0d9a0;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin: 1rem 0;
}
.a-completer strong { color: #8a6100; }
.a-completer ul { margin: .5rem 0 0; }
.a-completer li { color: #6b4e08; }

.encadre {
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  margin: 1.2rem 0;
}

footer {
  border-top: 1px solid var(--ligne);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: .85rem;
  color: var(--gris);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
}
footer a { color: var(--encre-2); text-decoration: none; }
footer a:hover { color: var(--navy); }

@media (max-width: 560px) {
  h1 { font-size: 1.6rem; }
  main { padding: 1.8rem 1.1rem 3rem; }
  table { font-size: .86rem; }
}
