body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f6f9f6;
  color: #2c3e50;
}

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

.entoure {
  border: 4px solid #27ae60;
  padding: 10px 25px;
  border-radius: 18px;
  display: inline-block;
  background-color: #1a3d2e;
}

.blink {
  animation: blink 1s infinite alternate;
  color: #ffcc00;
  font-weight: bold;
}

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

.coordonnees {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.photo {
  text-align: center;
  background-color: #fff;
  padding: 20px 0;
}

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

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

h2, h3 {
  color: #2c3e50;
}

ul {
  padding-left: 20px;
}

ul li {
  margin: 8px 0;
  list-style: none;
  position: relative;
}

ul li::before {
  content: "✔️";
  margin-right: 10px;
}

footer {
  text-align: center;
  background: #2c3e50;
  color: white;
  padding: 20px;
  margin-top: 30px;
}