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

header {
  background: #263238;
  color: #fff;
  padding: 20px;
}
.header-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.title-block h1 {
  margin: 0;
  font-size: 22px;
}
.blink {
  animation: blink 1.5s infinite;
  color: #ffc107;
}
@keyframes blink {
  50% { opacity: 0.4; }
}

nav.menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
nav.menu a {
  background: #ff6f00;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 20px;
  transition: 0.3s ease;
}
nav.menu a:hover {
  background: #ff8f00;
}

.main-section img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
}
.text-content {
  padding: 30px;
  background: #fff;
}
.services {
  padding: 40px 20px;
  background: #fffde7;
}
.services ul {
  padding-left: 20px;
}
.contact {
  background: #e0f2f1;
  text-align: center;
  padding: 40px;
}
footer {
  background: #263238;
  color: white;
  text-align: center;
  padding: 20px;
}