body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f9f9f9;
  color: #222;
}

header {
  background: #1a237e;
  color: white;
  text-align: center;
  padding: 20px;
}
.blink {
  animation: blink 1.2s infinite;
  color: #ffc107;
}
@keyframes blink {
  50% { opacity: 0.4; }
}

.menu {
  background: #3949ab;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
}
.menu a {
  color: white;
  text-decoration: none;
  margin: 6px;
  padding: 10px 20px;
  background: #5c6bc0;
  border-radius: 5px;
  transition: 0.3s;
}
.menu a:hover {
  background: #7986cb;
}

.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.content {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  text-align: left;
}
.services {
  background: #eeeeee;
  padding: 40px 20px;
}
.services ul {
  list-style: disc;
  padding-left: 40px;
  line-height: 1.7;
}
.zone {
  background: #e3f2fd;
  text-align: center;
  padding: 30px 20px;
}
footer {
  background: #1a237e;
  color: white;
  text-align: center;
  padding: 20px;
}