/* ==== reset / global ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #ff6b1a;
  color: #333;
  line-height: 1.6;
}

/* ==== contenu principal ==== */
.suppression-page {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.suppression-page h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.suppression-page .intro {
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.suppression-page h2 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.5rem;
}
.suppression-page ol {
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}
.suppression-page ul {
  list-style: disc inside;
  margin-top: 0.5rem;
}
.suppression-page p.note {
  margin-top: 2rem;
  font-style: italic;
}

/* ==== bouton CTA ==== */
.cta {
  text-align: center;
  margin: 2rem 0;
}
.btn-support {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #ff6b1a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.btn-support:hover {
  background: #e65c16;
}

/* ==== footer facultatif ==== */
.site-footer {
  text-align: center;
  color: #fff;
  padding: 1.5rem 0;
}
.site-footer nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.9rem;
}
