body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #212121;
}

header {
  background-color: #37474f;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.blink {
  animation: blink 1.5s infinite;
  color: #ff7043;
}
@keyframes blink {
  50% { opacity: 0.4; }
}

.menu {
  background: #ff7043;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.menu a {
  color: white;
  margin: 0 10px;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}
.menu a:hover {
  background: #ff8a65;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
}
.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.content {
  padding: 30px;
}

.services {
  background: #fff3e0;
  padding: 30px;
}
.services ul {
  padding-left: 20px;
}
.contact {
  background: #eceff1;
  text-align: center;
  padding: 40px 20px;
}
.contact iframe {
  margin-top: 20px;
  border: none;
  border-radius: 10px;
}
footer {
  background: #37474f;
  color: white;
  text-align: center;
  padding: 20px;
}