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

header {
  background-color: #01579b;
  color: white;
  text-align: center;
  padding: 20px;
}
.blink {
  animation: blink 1.5s infinite;
  color: #ffca28;
}
@keyframes blink {
  50% { opacity: 0.3; }
}

.menu {
  background: #0277bd;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
}
.menu a {
  color: white;
  text-decoration: none;
  margin: 5px;
  padding: 10px 18px;
  background: #03a9f4;
  border-radius: 18px;
  transition: 0.3s ease;
}
.menu a:hover {
  background: #4fc3f7;
}

.hero {
  text-align: center;
  padding: 20px;
}
.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.text {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  text-align: left;
}

.services {
  background: #ffffff;
  padding: 40px 20px;
}
.services ul {
  padding-left: 20px;
  line-height: 1.7em;
}
.zone {
  background: #e1f5fe;
  text-align: center;
  padding: 30px 20px;
}
footer {
  background: #01579b;
  color: white;
  text-align: center;
  padding: 20px;
}