/* ============================
   CGV PAGE
   ============================ */

.cgv-page {
  background: #fafafa;
  padding-top: 124px;
  min-height: 100vh;
}

/* ============================
   PAGE HEADER
   ============================ */

.cgv-page .page-header {
  text-align: center;
  padding: 40px 20px 50px;
  background: var(--white);
}

.cgv-page .page-header h1 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 15px;
}

.cgv-page .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gray);
}

.cgv-page .breadcrumb a {
  color: var(--gray);
  transition: color 0.3s;
}

.cgv-page .breadcrumb a:hover {
  color: var(--burgundy);
}

.cgv-page .breadcrumb .current {
  color: var(--burgundy);
}

/* ============================
   CONTENEUR PRINCIPAL
   ============================ */

.cgv-content {
  padding: 60px 20px 80px;
}

.cgv-container {
  max-width: 860px;
  margin: 0 auto;
}

/* Identification de la société */
.cgv-company {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  margin-bottom: 48px;
  border-radius: 0 4px 4px 0;
}

/* ============================
   ARTICLES CGV
   ============================ */

.cgv-article {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 40px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  scroll-margin-top: 130px;
}

.cgv-article h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ebe3;
}

/* Numéro de section */
.cgv-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
}

.cgv-article p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

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

.cgv-article a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cgv-article a:hover {
  color: var(--gold);
}

/* Listes numérotées et à puces */
.cgv-list {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  padding-left: 24px;
  margin: 12px 0 14px;
}

.cgv-list li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.cgv-list li::marker {
  color: var(--burgundy);
  font-weight: 600;
}

/* Mots en gras dans les articles */
.cgv-article strong {
  color: var(--dark);
  font-weight: 600;
}

/* ============================
   PIED DE PAGE CGV
   ============================ */

.cgv-footer {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #f0ebe3;
  text-align: center;
}

.cgv-footer p {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}

.cgv-footer svg {
  flex-shrink: 0;
  color: var(--burgundy);
}

.cgv-footer a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cgv-footer a:hover {
  color: var(--gold);
}

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

@media (max-width: 768px) {
  .cgv-page {
    padding-top: 80px;
  }

  .cgv-content {
    padding: 40px 16px 60px;
  }

  .cgv-article {
    padding: 24px 20px;
  }

  .cgv-article h2 {
    font-size: 14px;
    gap: 10px;
  }

  .cgv-num {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 12px;
  }
}
