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

header {
  background: #0d47a1;
  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.4s infinite;
  color: #ffeb3b;
}
@keyframes blink {
  50% { opacity: 0.3; }
}

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

.dual-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 20px;
  background: #ffffff;
}
.dual-block.reverse {
  background: #e3f2fd;
}
.img-side {
  flex: 1;
  min-width: 280px;
}
.img-side img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.text-center {
  flex: 2;
  padding: 20px;
  min-width: 300px;
}
.text-center ul {
  padding-left: 20px;
}

.contact {
  background: #e3f2fd;
  text-align: center;
  padding: 40px;
  border-radius: 40px 40px 0 0;
}
.contact iframe {
  margin-top: 20px;
  border: none;
  border-radius: 12px;
}

footer {
  background: #0d47a1;
  color: white;
  text-align: center;
  padding: 20px;
}