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

header {
  background: #424242;
  color: white;
  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: 24px;
}
.blink {
  animation: blink 1.5s infinite;
  color: #ff5252;
}
@keyframes blink {
  50% { opacity: 0.4; }
}

nav.menu-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
nav.menu-right a {
  background: #d32f2f;
  padding: 10px 18px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}
nav.menu-right a:hover {
  background: #e57373;
}

.image-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px;
  background: #fff;
}
.image-text img {
  flex: 1;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}
.text-content {
  flex: 2;
  padding: 20px;
  min-width: 300px;
}

.services {
  padding: 40px 20px;
  background: #fff3f3;
}
.services ul {
  padding-left: 20px;
}

.contact {
  background: #fce4ec;
  text-align: center;
  padding: 40px;
}
.contact iframe {
  margin-top: 20px;
  border: none;
  border-radius: 12px;
}
footer {
  background: #212121;
  color: white;
  text-align: center;
  padding: 20px;
}