.confidentialite-page {
  padding: 6rem 0 4rem;
  background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 50%);
  min-height: 100vh;
}

[data-theme='dark'] .confidentialite-page {
  background: linear-gradient(to bottom, var(--color-bg) 0%, #0f1419 50%);
}

.confidentialite-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === EN-TÊTE AVEC BADGE === */

.confidentialite-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.6s ease;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.1), rgba(25, 184, 216, 0.1));
  border: 1px solid rgba(1, 112, 168, 0.3);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

[data-theme='dark'] .header-badge {
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.15), rgba(25, 184, 216, 0.15));
}

.badge-icon {
  color: #0170a8;
}

[data-theme='dark'] .badge-icon {
  color: #19b8d8;
}

.badge-text {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 700;
  color: #0170a8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme='dark'] .badge-text {
  color: #19b8d8;
}

.confidentialite-breadcrumb {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

[data-theme='dark'] .confidentialite-breadcrumb {
  color: #9ca3af;
}

.confidentialite-breadcrumb a {
  color: #0170a8;
  text-decoration: none;
}

.confidentialite-breadcrumb a:hover {
  color: #19b8d8;
}

.separator {
  margin: 0 0.5rem;
  color: #d1d5db;
}

.confidentialite-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0170a8, #19b8d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.confidentialite-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

[data-theme='dark'] .confidentialite-subtitle {
  color: #9ca3af;
}

.confidentialite-date {
  font-size: 0.875rem;
  color: #9ca3af;
  font-style: italic;
}

/* === INTRODUCTION === */

.confidentialite-intro {
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.intro-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.05), rgba(25, 184, 216, 0.05));
  border: 2px solid rgba(1, 112, 168, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(1, 112, 168, 0.1);
}

[data-theme='dark'] .intro-card {
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.1), rgba(25, 184, 216, 0.1));
}

.intro-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0170a8, #19b8d8);
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(1, 112, 168, 0.3);
}

.intro-icon svg {
  color: #ffffff;
}

.intro-content h2 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.intro-content p {
  color: #374151;
  line-height: 1.8;
  margin: 0;
}

[data-theme='dark'] .intro-content p {
  color: #d1d5db;
}

/* === CATÉGORIES DE DONNÉES === */

.data-category {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 1rem;
  border-left: 4px solid #0170a8;
}

[data-theme='dark'] .data-category {
  background: rgba(17, 24, 39, 0.5);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category-icon {
  color: #0170a8;
}

[data-theme='dark'] .category-icon {
  color: #19b8d8;
}

.data-category h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.data-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data-category li {
  padding: 0.5rem 0;
  color: #374151;
}

[data-theme='dark'] .data-category li {
  color: #d1d5db;
}

/* === GRILLE DES FINALITÉS === */

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.purpose-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #0170a8;
}

[data-theme='dark'] .purpose-card {
  background: rgba(31, 41, 55, 0.8);
  border-color: #374151;
}

.purpose-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.1), rgba(25, 184, 216, 0.1));
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.purpose-icon svg {
  color: #0170a8;
}

[data-theme='dark'] .purpose-icon svg {
  color: #19b8d8;
}

.purpose-card h3 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.purpose-card p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

[data-theme='dark'] .purpose-card p {
  color: #9ca3af;
}

/* === BASE LÉGALE === */

.legal-basis {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.basis-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 1rem;
  border-left: 4px solid #0170a8;
}

[data-theme='dark'] .basis-item {
  background: rgba(17, 24, 39, 0.5);
}

.basis-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 112, 168, 0.1);
  border-radius: 0.75rem;
}

.basis-icon svg {
  color: #0170a8;
}

[data-theme='dark'] .basis-icon svg {
  color: #19b8d8;
}

.basis-content h3 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.basis-content p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

[data-theme='dark'] .basis-content p {
  color: #9ca3af;
}

/* === TABLEAU DE CONSERVATION === */

.retention-table {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

[data-theme='dark'] .retention-table {
  background: rgba(31, 41, 55, 0.5);
  border-color: #374151;
}

.retention-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 2fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

[data-theme='dark'] .retention-row {
  border-bottom-color: #374151;
}

.retention-row:last-child {
  border-bottom: none;
}

.retention-header {
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.1), rgba(25, 184, 216, 0.1));
  font-weight: 700;
  color: var(--color-text);
}

.retention-cell {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  color: #374151;
}

[data-theme='dark'] .retention-cell {
  color: #d1d5db;
}

.duration-badge {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, #0170a8, #19b8d8);
  color: #ffffff;
  font-weight: 700;
  border-radius: 9999px;
  font-size: 0.875rem;
}

/* === DESTINATAIRES === */

.recipients-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.recipient-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.recipient-item:hover {
  border-color: #0170a8;
  transform: translateX(4px);
}

[data-theme='dark'] .recipient-item {
  background: rgba(17, 24, 39, 0.5);
  border-color: #374151;
}

.recipient-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 112, 168, 0.1);
  border-radius: 0.75rem;
}

.recipient-icon svg {
  color: #0170a8;
}

[data-theme='dark'] .recipient-icon svg {
  color: #19b8d8;
}

.recipient-content h3 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.recipient-content p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

[data-theme='dark'] .recipient-content p {
  color: #9ca3af;
}

/* === SECTION DROITS=== */

.highlight-section {
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.05), rgba(25, 184, 216, 0.05)) !important;
  border: 2px solid rgba(1, 112, 168, 0.2) !important;
}

[data-theme='dark'] .highlight-section {
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.1), rgba(25, 184, 216, 0.1)) !important;
}

.intro-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 2rem;
}

[data-theme='dark'] .intro-text {
  color: #d1d5db;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.right-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.right-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(1, 112, 168, 0.15);
  border-color: #0170a8;
}

[data-theme='dark'] .right-card {
  background: rgba(31, 41, 55, 0.9);
  border-color: #374151;
}

.right-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0170a8, #19b8d8);
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(1, 112, 168, 0.3);
}

.right-icon svg {
  color: #ffffff;
}

.right-card h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.right-card p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

[data-theme='dark'] .right-card p {
  color: #9ca3af;
}

.right-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(1, 112, 168, 0.1);
  color: #0170a8;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme='dark'] .right-badge {
  background: rgba(1, 112, 168, 0.15);
  color: #19b8d8;
}

/* Exercice des droits */
.exercise-rights {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 1rem;
  border-left: 4px solid #0170a8;
}

[data-theme='dark'] .exercise-rights {
  background: rgba(17, 24, 39, 0.5);
}

.exercise-rights h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.contact-options {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
}

[data-theme='dark'] .contact-option {
  background: rgba(31, 41, 55, 0.8);
}

.contact-option svg {
  color: #0170a8;
  flex-shrink: 0;
}

[data-theme='dark'] .contact-option svg {
  color: #19b8d8;
}

.contact-option a {
  color: #0170a8;
  text-decoration: none;
  font-weight: 600;
}

.contact-option a:hover {
  color: #19b8d8;
}

.recourse-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(251, 146, 60, 0.05);
  border: 1px solid rgba(251, 146, 60, 0.2);
  border-radius: 1rem;
}

.recourse-box h4 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.cnil-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
}

[data-theme='dark'] .cnil-info {
  background: rgba(17, 24, 39, 0.5);
}

/* === MESURES DE SÉCURITÉ === */

.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.security-item {
  padding: 1.5rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #0170a8;
}

[data-theme='dark'] .security-item {
  background: rgba(17, 24, 39, 0.5);
  border-color: #374151;
}

.security-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.1), rgba(25, 184, 216, 0.1));
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.security-icon svg {
  color: #0170a8;
}

[data-theme='dark'] .security-icon svg {
  color: #19b8d8;
}

.security-item h3 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.security-item p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

[data-theme='dark'] .security-item p {
  color: #9ca3af;
}

/* === COOKIES === */

.cookies-types {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cookie-type {
  padding: 1.5rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 1rem;
  border-left: 4px solid #0170a8;
}

[data-theme='dark'] .cookie-type {
  background: rgba(17, 24, 39, 0.5);
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

.cookie-icon.essential {
  background: rgba(1, 112, 168, 0.1);
}

.cookie-icon.essential svg {
  color: #0170a8;
}

[data-theme='dark'] .cookie-icon.essential svg {
  color: #19b8d8;
}

.cookie-icon.preference {
  background: rgba(1, 112, 168, 0.1);
}

.cookie-icon.preference svg {
  color: #0170a8;
}

[data-theme='dark'] .cookie-icon.preference svg {
  color: #19b8d8;
}

.cookie-header h4 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.cookie-consent {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(1, 112, 168, 0.1);
  color: #0170a8;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

[data-theme='dark'] .cookie-consent {
  color: #19b8d8;
}

.cookie-type ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.cookie-type li {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

[data-theme='dark'] .cookie-type li {
  color: #9ca3af;
}

.cookie-management {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 1rem;
}

[data-theme='dark'] .cookie-management {
  background: rgba(17, 24, 39, 0.5);
}

.management-option strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.browser-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.browser-links a {
  padding: 0.5rem 1rem;
  background: rgba(1, 112, 168, 0.1);
  color: #0170a8;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.browser-links a:hover {
  background: #0170a8;
  color: #ffffff;
}

[data-theme='dark'] .browser-links a {
  color: #19b8d8;
}

[data-theme='dark'] .browser-links a:hover {
  background: #19b8d8;
}

/* === CONTACT GRID === */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  padding: 2rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #0170a8;
}

[data-theme='dark'] .contact-card {
  background: rgba(17, 24, 39, 0.5);
  border-color: #374151;
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0170a8, #19b8d8);
  border-radius: 1rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(1, 112, 168, 0.3);
}

.contact-card-icon svg {
  color: #ffffff;
}

.contact-card h3 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #6b7280;
  margin: 0;
}

[data-theme='dark'] .contact-card p {
  color: #9ca3af;
}

.contact-card a {
  color: #0170a8;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  color: #19b8d8;
}

/* === ALERTES === */

.alert-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  border-left: 4px solid;
}

.alert-icon {
  flex-shrink: 0;
}

.alert-box p,
.alert-box ul {
  margin: 0;
}

.alert-box ul {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}

.alert-info {
  background: rgba(1, 112, 168, 0.05);
  border-left-color: #0170a8;
}

.alert-info .alert-icon {
  color: #0170a8;
}

.alert-success {
  background: rgba(1, 112, 168, 0.05);
  border-left-color: #0170a8;
}

.alert-success .alert-icon {
  color: #0170a8;
}

.alert-warning {
  background: rgba(251, 146, 60, 0.05);
  border-left-color: #fb923c;
}

.alert-warning .alert-icon {
  color: #fb923c;
}

/* === CTA FINAL === */

.confidentialite-cta {
  margin-top: 4rem;
  animation: fadeInUp 0.6s ease 0.6s backwards;
}

.cta-card {
  background: linear-gradient(135deg, #0170a8, #19b8d8);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(1, 112, 168, 0.3);
}

.cta-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  margin: 0 auto 1.5rem;
}

.cta-icon svg {
  color: #ffffff;
}

.cta-card h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #0170a8;
  font-family: var(--font-primary);
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(4px);
}

/* === TABLE DES MATIÈRES & SECTIONS === */

.confidentialite-toc {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

[data-theme='dark'] .confidentialite-toc {
  background: rgba(31, 41, 55, 0.8);
  border-color: #374151;
}

.toc-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-title::before {
  content: '📑';
  font-size: 1.5rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.toc-list li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #374151;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

[data-theme='dark'] .toc-list li a {
  color: #d1d5db;
}

.toc-list li a:hover {
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.1), rgba(25, 184, 216, 0.1));
  color: #0170a8;
  transform: translateX(8px);
}

[data-theme='dark'] .toc-list li a:hover {
  color: #19b8d8;
}

.confidentialite-content {
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.confidentialite-section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  scroll-margin-top: 100px;
  transition: all 0.3s ease;
}

.confidentialite-section:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

[data-theme='dark'] .confidentialite-section {
  background: rgba(31, 41, 55, 0.8);
  border-color: #374151;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
}

[data-theme='dark'] .section-header {
  border-bottom-color: #374151;
}

.section-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0170a8, #19b8d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.section-content {
  line-height: 1.8;
  color: #374151;
}

[data-theme='dark'] .section-content {
  color: #d1d5db;
}

.section-content p {
  margin-bottom: 1.25rem;
}

.section-content h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 2rem 0 1rem;
}

.section-content ul,
.section-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 0;
}

.section-content li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.section-content strong {
  color: var(--color-text);
  font-weight: 600;
}

.section-content a {
  color: #0170a8;
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 112, 168, 0.3);
  transition: all 0.3s ease;
}

.section-content a:hover {
  color: #19b8d8;
  border-bottom-color: #19b8d8;
}

.info-card {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 0.75rem;
  border-left: 4px solid #0170a8;
}

[data-theme='dark'] .info-card {
  background: rgba(17, 24, 39, 0.5);
}

.info-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.info-list dt {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

[data-theme='dark'] .info-list dt {
  color: #9ca3af;
}

.info-list dd {
  margin: 0 0 1rem 0;
  color: var(--color-text);
  font-weight: 500;
}

.info-list dd:last-child {
  margin-bottom: 0;
}

/* === ANIMATIONS === */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */

@media (max-width: 768px) {
  .confidentialite-page {
    padding: 4rem 0 3rem;
  }

  .confidentialite-container {
    padding: 0 1rem;
  }

  .confidentialite-title {
    font-size: 2rem;
  }

  .intro-card {
    flex-direction: column;
    text-align: center;
  }

  .confidentialite-section {
    padding: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .section-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .purpose-grid,
  .rights-grid,
  .security-measures {
    grid-template-columns: 1fr;
  }

  .retention-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .retention-cell {
    justify-content: flex-start;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .confidentialite-toc {
    padding: 1.5rem;
  }

  .toc-list {
    gap: 0.5rem;
  }

  .purpose-card,
  .right-card,
  .security-item {
    padding: 1rem;
  }
}