body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: #2b2b2b;
}

header {
  background: #6a1b9a;
  color: white;
  text-align: center;
  padding: 30px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
header h1 {
  margin: 0;
  font-size: 28px;
}
.blink {
  animation: blink 1s infinite;
  color: #ffeb3b;
}
@keyframes blink {
  50% { opacity: 0.4; }
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px auto;
}
nav a {
  text-decoration: none;
  padding: 12px 30px;
  background: #e1bee7;
  border-radius: 50px;
  font-weight: bold;
  color: #4a148c;
  box-shadow: 0 0 8px rgba(106, 27, 154, 0.2);
  animation: pulse 3s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(106,27,154,0.2); }
  50% { box-shadow: 0 0 20px rgba(106,27,154,0.4); }
}

.content-block, .content-block-alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px;
  gap: 30px;
  background: #f3e5f5;
}
.content-block-alt {
  background: #ede7f6;
}
.text-left {
  flex: 1;
  min-width: 300px;
}
.image-right {
  flex: 1;
  min-width: 300px;
}
.image-right img {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

footer {
  background: #4a148c;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}