/* Couleurs principales */
:root {
  --beige: #f9f6f1;
  --lavande: #c8b5e0;
  --bleu-clair: #b5d3e0;
  --texte: #333;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--beige);
  color: var(--texte);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--lavande);
  padding: 15px 30px;
}

header .logo {
  font-size: 1.5em;
  font-weight: bold;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--texte);
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: var(--bleu-clair);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.services, .contact {
  padding: 50px 20px;
  max-width: 800px;
  margin: auto;
}

.services h2, .contact h2 {
  text-align: center;
  margin-bottom: 30px;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  background: white;
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact p {
  text-align: center;
  margin: 10px 0;
}

.contact .note {
  font-size: 0.9em;
  color: #555;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background: var(--lavande);
  margin-top: 50px;
}
