/* Masquer header, hero, footer */
header,
.hero,
.hero .cta,
footer {
  display: none !important;
}

/* Titres en noir */
.services h2,
.content h2 {
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}

/* Section services */
.services {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.service {
  flex: 1;
  text-align: center;
  border: 1px solid #000;
  padding: 1rem;
  color: #000;
}

.service i {
  color: #000 !important;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: none !important;
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  filter: grayscale(100%);
}

/* Contenu */
.content {
  color: #000;
  font-size: 14px;
  padding: 1rem 0;
}

/* Éviter coupures */
* {
  break-inside: avoid;
  page-break-inside: avoid;
}
