body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fdfdfd;
  color: #1b1b1b;
}

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

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

.single-image-section img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.text-content {
  padding: 30px;
  background: #fff;
}
.text-only-section {
  padding: 40px 20px;
  background: #fbe9e7;
}
.text-only-section ul {
  padding-left: 20px;
}
.contact {
  background: #fbe9e7;
  text-align: center;
  padding: 40px;
}
.contact iframe {
  margin-top: 20px;
  border: none;
  border-radius: 12px;
}
footer {
  background: #b71c1c;
  color: white;
  text-align: center;
  padding: 20px;
}