/* -----------------------------------------------------------------------------
   cgv.css — Styles spécifiques aux Conditions Générales de Vente                
   ----------------------------------------------------------------------------- */

/* Conteneur principal de la page CGV */
.cgv.section {
  max-width: 820px;           /* largeur lisible */
  margin-inline: auto;
  padding: 3rem 1.25rem;
  font-size: 1rem;
}

/* Titre principal */
.cgv.section .neon-title {
  font-size: 2.25rem;
  margin-bottom: 1.75rem;
}

/* Sous‑titres de niveau 2 */
.cgv.section h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--accent-neon, #00eaff);
  position: relative;
}
.cgv.section h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 3rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Sous‑titres internes (ex. 7.1, 7.2) */
.cgv-subtitle {
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

/* Paragraphes & listes */
.cgv.section p,
.cgv.section li {
  line-height: 1.65;
}

.cgv.section ul,
.cgv.section ol {
  margin-left: 1.25rem;
  padding-left: 0.5rem;
}

/* Liens */
.cgv.section a {
  color: var(--accent-neon, #00eaff);
  text-decoration: underline;
}
.cgv.section a:hover {
  text-decoration: none;
}

/* Médias queries (desktop) */
@media (min-width: 992px) {
  .cgv.section .neon-title {
    font-size: 2.75rem;
  }
  .cgv.section h2 {
    font-size: 1.75rem;
  }
}
