body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: #212121;
}

header {
  background: #2979ff;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.blink {
  animation: blink 1.2s infinite;
  color: #ffeb3b;
}
@keyframes blink {
  50% { opacity: 0.4; }
}

.menu {
  background: #ffeb3b;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
}
.menu a {
  text-decoration: none;
  color: #212121;
  background: #fff176;
  margin: 6px;
  padding: 10px 18px;
  border-radius: 24px;
  font-weight: bold;
  transition: 0.3s ease;
}
.menu a:hover {
  background: #fff59d;
}

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

.services {
  background: #f3e5f5;
  padding: 40px 20px;
}
.services ul {
  padding-left: 20px;
  line-height: 1.7em;
}
.zone {
  background: #e3f2fd;
  text-align: center;
  padding: 30px 20px;
}
footer {
  background: #212121;
  color: white;
  text-align: center;
  padding: 20px;
}