
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0D1B2A;
  color: #ffffff;
  overflow-x: hidden;
}
.parallax-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('background.jpg') center/cover no-repeat;
  z-index: -1;
  animation: slowScroll 60s linear infinite;
  filter: brightness(0.6);
}
@keyframes slowScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-20px); }
}
.logo {
  width: 440px;
  filter: drop-shadow(0 0 8px #00c2ff);
  margin-top: 20px;
}
header {
  text-align: center;
  padding: 2rem;
}
.intro, .quote, .contact {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.quote blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: #00c2ff;
}
