body {
  background-color: #0b0b0b;
  color: #e5e5e5;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  line-height: 1.7;
}

.container-site {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

/* Hero */
.hero_confidentialite {
  text-align: center;
  padding: 100px 20px 60px;
  border-bottom: 1px solid #222;
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
}

.hero_confidentialite h1 {
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero_confidentialite p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
}

.hero_confidentialite .pill {
  display: inline-block;
  margin-top: 15px;
  background: #1c1c1c;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.9rem;
  border: 1px solid #333;
}

/* Layout */
.grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-top: 60px;
}

.card {
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

/* TOC */
.toc h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.toc ul {
  list-style: none;
  padding-left: 0;
}

.toc ul li {
  margin: 8px 0;
}

.toc a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.toc a:hover {
  color: #fff;
}

/* Mobile TOC */
.toc-mobile {
  display: none;
}

.toc-toggle {
  display: none;
}

.toc-trigger {
  display: block;
  background: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}

.toc-panel {
  display: none;
}

.toc-toggle:checked + .toc-trigger + .toc-panel {
  display: block;
  margin-top: 15px;
}

/* Content */
.content h2 {
  font-size: 1.5rem;
  color: #fff;
  border-left: 4px solid #888;
  padding-left: 12px;
  margin-top: 40px;
}

.content p, .content li {
  color: #ddd;
  font-size: 1rem;
}

.content a {
  color: #9fd1ff;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
  color: #ccc;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .toc {
    display: none;
  }
  .toc-mobile {
    display: block;
  }
}