body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f8;
  color: #222;
}

header {
  background: #1e3a5f;
  color: white;
  text-align: center;
  padding: 30px 10px;
}

.top-box {
  border: 2px solid #ffffffaa;
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
  background: #2e4b70;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

.tel {
  font-size: 1.2em;
  color: #fcd34d;
  margin-top: 10px;
}

.adresse, .mail {
  font-size: 0.95em;
}

nav {
  background: #fcd34d;
  display: flex;
  justify-content: center;
  padding: 12px 0;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #1e3a5f;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 25px;
  background: #fff;
  transition: 0.3s;
}

nav a:hover {
  background: #ffe680;
}

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

h2 {
  color: #1e3a5f;
}

.photo {
  text-align: center;
  margin: 30px 0;
}

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

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

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

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

footer {
  background: #1e3a5f;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}