/* ---- POLITIQUE CONFIDENTIALITÉ ---- */
/* Style basé sur indexMain.css pour cohérence visuelle */

:root {
  --accent: #f18536;
  --muted: #bbb;
}

.privacy-main {
  max-width: 1000px;
  margin: 160px auto 60px auto;
  padding: 0 1rem;
  color: white;
}

/* En-tête */
.privacy-hero {
  background: rgba(26, 42, 66, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-hero h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 .5rem 0;
}

.privacy-hero .subtitle {
  margin: 0;
  color: var(--accent);
  font-size: 1rem;
}

/* Grille des sections */
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Carte */
.privacy-card {
  background: rgba(26, 42, 66, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  padding: 1.5rem;
}

.privacy-card h3 {
  margin: 0 0 .75rem 0;
  font-weight: 700;
}

.privacy-card p, 
.privacy-card li {
  color: var(--accent);
  line-height: 1.5;
}

.privacy-card ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.privacy-card a {
  color: var(--accent);
  text-decoration: none;
}

.privacy-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .privacy-grid {
    grid-template-columns: 1fr;
  }
}
