body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #f1f5f9;
  color: #1f2937;
}

header {
  background: #1e40af;
  color: white;
  padding: 20px;
  text-align: center;
}
.top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top h1 {
  margin: 0;
  font-size: 1.8em;
}
.phone {
  font-size: 1.3em;
  margin-top: 8px;
  font-weight: bold;
}
.zone {
  margin-top: 10px;
  font-style: italic;
}

.blink {
  animation: blink 1.4s infinite;
}
@keyframes blink {
  50% { opacity: 0.5; }
}

nav {
  display: flex;
  justify-content: center;
  background: #60a5fa;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  color: white;
  padding: 12px 18px;
  font-weight: bold;
  transition: 0.3s;
}
nav a:hover {
  background: #3b82f6;
}

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

h2 {
  color: #1e3a8a;
}

ul {
  list-style: none;
  padding: 0;
}
ul li {
  margin: 6px 0;
}

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

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