
/* Palette nature et campagne */
body {
  background-color: #f5f5f0; /* beige clair */
  color: #333;
  font-family: 'Lato', sans-serif;
}

/* Centrage du contenu */
.center-content-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Titres de section */
.titre-section {
  font-size: 1.8em;
  color: #5a8f3f; /* vert doux */
  margin-bottom: 10px;
  text-align: center;
}

/* Blocs principaux */
.bloc-principal {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  padding: 20px;
  margin: 20px auto;
  border-radius: 8px;
  max-width: 900px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Boutons personnalisés */
.bouton-contact {
  background-color: #5a8f3f;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.bouton-contact:hover {
  background-color: #4a7834;
}

/* Pied de page */
.footer {
  background-color: #e0f0dc;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #555;
}
