body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
}

header {
  background: #222;
  color: white;
  text-align: center;
  padding: 30px 15px;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.coordonnees {
  font-size: 0.95rem;
  line-height: 1.6em;
}

.clignote {
  animation: blink 1.2s infinite alternate;
  color: #ff5722;
  font-weight: bold;
}

@keyframes blink {
  from { opacity: 1; }
  to { opacity: 0.5; }
}

.menu-bouton-container {
  text-align: center;
  margin: 20px;
}

.menu-bouton {
  font-size: 1.2rem;
  background-color: #ff5722;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

.clignote-btn {
  animation: blink 1.2s infinite alternate;
}

.menu-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  background: #fbe9e7;
  padding: 15px 0;
}

.menu-list a {
  background: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.menu-list a:hover {
  background: #ffe0b2;
}

main {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

h2 {
  color: #333;
  margin-bottom: 10px;
}

.image-container {
  text-align: center;
  margin: 25px 0;
}

.image-container img {
  width: 95%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}