/* ============ GLOBAL ============ */
:root {
  --rouge:#e60000;
  --navH:90px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #000;
  text-align: center;
  background: #fff;
}

.content {
  flex: 1;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

@keyframes fadeIn {
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}

/* ============ NAVIGATION ============ */
nav {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  padding:10px;
}
nav img {
  height:60px;
  transition:transform .2s;
}
nav img:hover { transform:scale(1.05); }

/* ============ FOOTER ============ */
footer {
  margin-top:auto;
  padding-bottom:20px;
}
footer .socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
footer .socials img {
  width:40px;
  height:auto;
  margin:0 5px;
  vertical-align:middle;
  transition:transform .2s;
}
footer .socials img:hover { transform:scale(1.15); }
.qr { margin-top:15px; width:120px; }

/* ============ PARTENAIRES ============ */
.categorie {
  position:relative;
  text-align:center;
  margin-top:40px;
}
.categorie img.bandeau {
  width:100%;
  height:90px;
  object-fit:cover;
  filter:brightness(.85);
  display:block;
}
.categorie h2 {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  color:#fff;
  font-family:Impact, Arial, sans-serif;
  font-size:2rem;
  text-shadow:2px 2px 5px rgba(0,0,0,.7);
}
.partenaires-grid {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
  padding:20px;
}
.partenaires-grid img {
  width:100%;
  max-width:300px;
  background:#fff;
  border-radius:8px;
  transition:transform .2s;
}
.partenaires-grid img:hover { transform:scale(1.05); }
@media (max-width:768px){ .partenaires-grid img{ max-width:200px; } }
@media (max-width:480px){ .partenaires-grid img{ max-width:160px; } }

/* ============ HERO – LE DÉFI ============ */
#hero-defi {
  position: relative;
  height: clamp(360px, 70vh, 560px);
  margin: 0 0 24px 0;
  overflow: hidden;
  background: url("images/banniere/natation.jpg") center 38% / cover no-repeat;
  isolation: isolate;
}
#hero-defi .camo-fixed {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
    url("images/banniere/fond_camo_transparent.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
  z-index: 1;
}
#hero-defi .hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
#hero-defi .hero-titre {
  font-family: Impact, Arial, sans-serif;
  font-size: clamp(24px, 4.2vw, 44px);
  font-weight: 800;
  color: #111;
  margin: 0 0 8px;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff,
               -1px 1px 0 #fff, 1px 1px 0 #fff;
}
#hero-defi .baseline {
  font-family: "Shadows Into Light", cursive;
  font-size: clamp(16px, 2.6vw, 24px);
  font-weight: 700;
  color:#111;
  margin:0 0 16px;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff,
               -1px 1px 0 #fff, 1px 1px 0 #fff;
}
#hero-defi .btn-cta-img img {
  height: clamp(158px, 6vw, 220px);
  width:auto;
  vertical-align: middle;
  transition: transform .18s ease;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.25));
}
#hero-defi .btn-cta-img:hover img{ transform: scale(1.06); }
@media (max-width: 600px){
  #hero-defi .camo-fixed{ position: absolute; }
}

/* ============ PAGE LE DÉFI (cartes) ============ */
.page-defi {
  max-width:1100px;
  margin:0 auto;
  padding:25px 20px 50px;
}
.section-card {
  background:rgba(255,255,255,.9);
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:26px;
  margin:16px auto 26px;
  text-align:left;
}
.section-card h2 {
  font-family:Impact, Arial, sans-serif;
  font-size:1.7rem;
  font-weight:500;
  margin:0 0 12px;
  color:#111;
}
.section-card p{ line-height:1.6; margin:0 0 10px; }

/* KPIs */
.kpis {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:16px;
}
.kpi {
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  padding:16px 14px;
  text-align:center;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
}
.kpi-value{ font-size:1.6rem; font-weight:800; }
.kpi-label{ opacity:.75; font-size:.95rem; margin-top:4px; }

/* Cumuls/Contraintes */
.cumuls {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:16px;
}
.cumul-card {
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  padding:18px 16px;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
}
.cumul-card h3{ margin:0 0 8px; }
.cumul-card ul{ margin:0; padding-left:18px; }

/* Timeline */
.timeline{ margin:8px 0 0 18px; }
.timeline li{ margin:8px 0; }

/* CTA group */
.ctas .cta-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.btn-cta {
  display:inline-block;
  background:var(--rouge);
  color:#fff;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  transition:background .25s, transform .15s;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}
.btn-cta:hover{ background:#cc0000; transform:scale(1.04); }

@media (max-width:860px){
  .kpis{ grid-template-columns:1fr; }
  .cumuls{ grid-template-columns:1fr; }
}

/* Texte sous le hero lisible sur camo (mêmes cartes que “Défi”) */
.page-homme .section-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:26px; margin:16px auto 26px; text-align:left;
}
.page-homme {
  background: url("images/banniere/fond_camo_transparent.png") center top / cover repeat-y;
}
html.page-homme, body.page-homme{
  background:
    url("/images/banniere/fond_camo_transparent.png?v=5")
    center top / cover repeat-y;
  /* option sympa si tu veux que le motif reste fixe : */
  /* background-attachment: fixed; */
}
/* Le conteneur principal de la page Homme */
main.page-homme{
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px 20px 50px;
}

/* Les cartes de texte (légèrement translucides) */
.page-homme .section-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 26px;
  margin: 16px auto 26px;
  text-align: left;
}
/* ===== HERO L’HOMME ===== */
#hero-homme {
  position: relative;
  min-height: clamp(480px, 70vh, 680px);
  margin: 0 0 24px;
  overflow: hidden;
  isolation: isolate;

  /* Photo en arrière-plan */
  background: url("/images/banniere/portrait_pascal.jpg?v=9")
              center 60% / cover no-repeat #0b0b0b;
}

/* CAMO overlay fixe par-dessus la photo */
#hero-homme .camo-fixed {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
    url("/images/banniere/fond_camo_transparent.png?v=9");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* Texte au-dessus de tout */
#hero-homme .hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

/* Fallback mobile */
@media (max-width: 600px) {
  #hero-homme .camo-fixed { position: absolute; }
}
/* Galerie mise en grille, pas taille réelle */
.page-homme .galerie-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-homme .galerie-grid a{
  display:block;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  transition: transform .18s ease;
}
.page-homme .galerie-grid a:hover{ transform: scale(1.02); }
.page-homme .galerie-grid img{
  width:100%; height:220px; object-fit:cover; display:block;
}

@media (max-width:900px){ .page-homme .galerie-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){
  .page-homme .galerie-grid{ grid-template-columns:1fr; }
  .page-homme .galerie-grid img{ height:200px; }
}
/* LIGHTBOX — état caché vs ouvert */
.lb{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  display: none;                    /* cachée par défaut */
  align-items: center; justify-content: center;
  padding: 20px;
  z-index: 9999;                    /* au-dessus de tout (camo, etc.) */
}
.lb[aria-hidden="false"]{ display: flex; }  /* ouverte */

/* Contenu */
.lb-inner{ max-width:min(92vw,1100px); max-height:80vh; text-align:center; }
.lb-img{ max-width:100%; max-height:70vh; display:block; margin:0 auto 10px; border-radius:10px; box-shadow:0 10px 30px rgba(0,0,0,.3); }
.lb-cap{ color:#fff; opacity:.9; margin:0; }

/* Boutons */
.lb-close, .lb-prev, .lb-next{
  position:absolute;
  background:rgba(255,255,255,.15);
  color:#fff; border:none; font-size:34px;
  width:44px; height:44px; line-height:44px;
  border-radius:50%; cursor:pointer; transition:background .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover{ background:rgba(255,255,255,.28); }
.lb-close{ top:18px; right:18px; }
.lb-prev{ left:16px; top:50%; transform:translateY(-50%); }
.lb-next{ right:16px; top:50%; transform:translateY(-50%); }
main.page-homme {
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px 20px 50px;
  background: url("images/banniere/fond_camo_transparent.png") 
              center top / cover repeat-y;
}
/* --- HERO L’HOMME : titres & baseline comme sur "Défi" --- */
#hero-homme .hero-titre{
  font-family: Impact, Arial, sans-serif;
  font-size: clamp(26px, 4.2vw, 46px);
  font-weight: 800;
  color:#111;
  margin: 0 0 8px;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff; /* liseré blanc */
}

#hero-homme .baseline{
  font-family: "Shadows Into Light", cursive;
  font-size: clamp(16px, 2.6vw, 24px);
  font-weight:700;
  color:#111;
  margin:0 0 14px;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff; /* même liseré blanc */
}

/* --- HERO L’HOMME : bouton/logo 50% plus petit --- */
#hero-homme .btn-cta-img img{
  height: clamp(60px, 6vw, 110px);  /* avant ~220px sur "Défi" -> moitié */
  width: auto;
  vertical-align: middle;
  transition: transform .18s ease;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.25));
}
#hero-homme .btn-cta-img:hover img{ transform: scale(1.06); }
/* ===== HERO PRESSE (même logique que Défi/Homme) ===== */
#hero-presse{
  position: relative;
  min-height: clamp(320px, 48vh, 420px);
  margin: 0 0 24px;
  overflow: hidden;
  isolation: isolate;
  background: url("images/banniere/banniere_presse.jpg") center / cover no-repeat #0b0b0b; /* mets ton image */
}
#hero-presse .camo-fixed{
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
    url("images/banniere/fond_camo_transparent.png");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
  z-index: 1;
}
#hero-presse .hero-overlay{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
#hero-presse .hero-titre{
  font-family: Impact, Arial, sans-serif;
  font-size: clamp(26px, 4.2vw, 46px);
  font-weight: 800; color:#111; margin:0 0 8px;
  text-shadow:-1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
#hero-presse .baseline{
  font-family: "Shadows Into Light", cursive;
  font-size: clamp(16px, 2.6vw, 24px);
  font-weight:700; color:#111; margin:0;
  text-shadow:-1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
@media (max-width: 600px){ #hero-presse .camo-fixed{ position: absolute; } }

/* ===== PAGE PRESSE ===== */
.page-presse{ max-width:1100px; margin:0 auto; padding:25px 20px 50px; }

.presse-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
@media (max-width: 980px){ .presse-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .presse-grid{ grid-template-columns: 1fr; } }

.presse-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.presse-cover{
  display:block;
  position:relative;
  aspect-ratio: 16 / 9;         /* recadrage propre */
  overflow:hidden;
  background:#f3f3f3;
}
.presse-cover img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.presse-cover.video .play-badge{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  background:rgba(0,0,0,.55);
  color:#fff; font-size:28px; line-height:1;
  border-radius:50%;
  width:58px; height:58px; display:flex; align-items:center; justify-content:center;
  pointer-events:none;
}

.presse-content{ padding:16px; text-align:left; }
.presse-title{ margin:0 0 6px; font-size:1.05rem; font-weight:700; }
.presse-excerpt{ margin:0 0 12px; line-height:1.5; opacity:.9; }

/* Réutilise ton bouton rouge */
.presse-content .btn-cta{ display:inline-block; }
/* HERO Défi : bloc en haut, visage dégagé */
/* HERO Défi : overlay plaqué en haut */
#hero-defi .hero-overlay{
  justify-content: flex-start;   /* contenu en haut */
  align-items: center;
  padding-top: 20px;             /* marge respiratoire */
  gap: 10px;
  height: 100%;
  position: absolute;            /* plaque par rapport au hero */
  top: 0; left: 0; right: 0;
}

/* Pas de souligné sur les liens du hero */
#hero-defi .hero-overlay a{
  text-decoration: none;
}
#hero-defi .hero-overlay a:hover,
#hero-defi .hero-overlay a:focus{
  text-decoration: none;
}

/* Couleur/contour du texte bien fixés */
#hero-defi .hero-titre,
#hero-defi .baseline{
  color:#111;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}
#hero-defi .hero-overlay{
  padding-top: 10px; /* réduit encore */
}

/* Mobile : un peu moins de marge haute */
@media (max-width: 600px){
  #hero-defi .hero-overlay{ padding-top: clamp(20px, 6vh, 80px); }
}
/* === FORCE OVERLAY DÉFI EN HAUT, QUOI QU’IL ARRIVE === */
body > header#hero-defi{ position: relative !important; }

body > header#hero-defi .hero-overlay{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;

  /* contenu collé en haut et centré horizontalement */
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  flex-direction: column !important;

  height: 100% !important;
  padding-top: 8px !important;   /* ajuste 0–40px si besoin */
  gap: 10px !important;
  z-index: 2 !important;
}

/* aucun margin parasite sur le premier élément */
body > header#hero-defi .hero-overlay > *:first-child{
  margin-top: 0 !important;
}

/* sécurité : le calque camo doit rester dessous */
body > header#hero-defi .camo-fixed{
  z-index: 1 !important;
}

/* sécurité : pas de souligné sur le bouton */
body > header#hero-defi .hero-overlay a{
  text-decoration: none !important;
}
/* === L’HOMME : bloc hero centré verticalement === */
#hero-homme .hero-overlay{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;               /* au-dessus du camo */
  padding: 0;
}

/* Ajustement fin : modifie +20px ou -20px pour remonter/descendre */
:root{ --offset-hero-homme: 0px; }
#hero-homme .hero-overlay{
  transform: translateY(calc(-50% + var(--offset-hero-homme)));
}
/* ===== Boutique (grille de cartes) ===== */
.page-boutique {
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 0 20px;
}
.page-boutique .boutique-intro {
  margin: 14px 0 8px;
  opacity: .85;
}

.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 18px 0 8px;
}

.produit {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  padding: 16px;
  text-align: center;
  transition: transform .2s;
}
.produit:hover { transform: scale(1.02); }

.produit img {
  width: 100%;
  aspect-ratio: 4/3;            /* ou 1/1 si tes visuels sont carrés */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.produit h3 { margin: 6px 0 4px; font-size: 1.1rem; }
.produit p { font-size: .95rem; opacity: .85; min-height: 2.6em; }

.prod-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  justify-items: center;
  margin-top: 10px;
}

.prix { font-weight: 800; font-size: 1.05rem; }

/* Bouton "bientôt dispo" */
.btn-cta.disabled {
  background: #9b9b9b;
  pointer-events: none;
  opacity: .75;
}
/* ===== HERO BOUTIQUE ===== */
#hero-boutique{
  position: relative;
  min-height: clamp(320px, 50vh, 460px);
  margin: 0 0 30px;
  overflow: hidden;
  isolation: isolate;
  /* Photo de fond (modifie le chemin si besoin) */
  background: url("images/banniere/hero_boutique.jpg")
              center 50% / cover no-repeat #0b0b0b;
}

/* Camo + voile par-dessus la photo, sous le texte */
#hero-boutique .camo-fixed{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
    url("images/banniere/fond_camo_transparent.png");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, repeat;
  pointer-events: none;
  z-index: 1;
}

/* Texte centré au-dessus de tout */
#hero-boutique .hero-overlay{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

/* Titre et baseline : mêmes styles que “Défi / L’homme” */
#hero-boutique .hero-titre{
  font-family: Impact, Arial, sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color:#111;
  margin: 0 0 8px;
  text-shadow:
    -1px -1px 0 #fff,  1px -1px 0 #fff,
    -1px  1px 0 #fff,  1px  1px 0 #fff;
}
#hero-boutique .baseline{
  font-family: "Shadows Into Light", cursive;
  font-size: clamp(16px, 2.8vw, 24px);
  font-weight: 700;
  color:#111;
  margin: 0;
  text-shadow:
    -1px -1px 0 #fff,  1px -1px 0 #fff,
    -1px  1px 0 #fff,  1px  1px 0 #fff;
}

/* cadrage mobile : remonte un poil pour éviter les barres d’UI */
@media (max-width: 600px){
  #hero-boutique{ background-position: center 42%; }
}
nav img {
  max-width: 150px;   /* largeur max pour mobile */
  height: auto;
}

@media (max-width: 600px) {
  nav {
    display: flex;
    flex-wrap: wrap;       /* les boutons passent à la ligne */
    justify-content: center;
    gap: 8px;              /* espace entre eux */
  }
  nav img {
    max-width: 100px;      /* encore plus petit si écran étroit */
  }
}
/* --- HERO BOUTIQUE --- */
#hero-boutique {
  position: relative;
  min-height: clamp(300px, 45vh, 420px);
  margin: 0 0 24px;
  overflow: hidden;
  isolation: isolate;
  background: url("/images/banniere/fond_camo_transparent.png?v=1")
              center / cover no-repeat;
}

/* Overlay */
#hero-boutique .camo-fixed {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25));
  pointer-events: none;
  z-index: 1;
}

#hero-boutique .hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 20px;
}

/* Titre principal */
#hero-boutique .hero-titre {
  font-family: Impact, Arial, sans-serif;
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000,
               -2px 2px 0 #000, 2px 2px 0 #000;
  margin: 0 0 12px;
}

/* Sous-titre stylé */
#hero-boutique .baseline {
  font-family: "Shadows Into Light", cursive;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: #c8102e; /* rouge vif */
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,.25);
}
<div class="copyright nolimit">
  <p>© 2025 Pascal Pich – NO LIMIT. Tous droits réservés.</p>
  <p>
    <a href="/mentions-legales.html">Mentions légales</a> |
    <a href="/politique-confidentialite.html">Politique de confidentialité</a>
  </p>
</div>

