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

header {
  text-align: center;
  background-color: #1e3a8a;
  color: #fff;
  padding: 20px;
}
header h1 {
  margin: 0;
  font-size: 2em;
}
.phone {
  font-size: 1.2em;
  margin-top: 5px;
}
.zone {
  font-size: 1em;
  margin-top: 8px;
  font-style: italic;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #facc15;
  gap: 15px;
  padding: 14px;
}
.menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: bold;
  padding: 8px 16px;
  background: #fde68a;
  border-radius: 12px;
  transition: background 0.3s;
}
.menu a:hover {
  background: #fbbf24;
  color: #000;
}

.blink {
  animation: blink 1.5s infinite;
}
@keyframes blink {
  50% { opacity: 0.4; }
}

.content {
  max-width: 850px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.content section {
  margin-bottom: 40px;
}
.content ul {
  list-style: none;
  padding-left: 0;
}
.content ul li {
  margin: 6px 0;
}

.photo {
  text-align: center;
  margin: 40px 0;
}
.photo img {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

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