body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #e6f0f8, #ffffff);
  color: #333;
  overflow-x: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
}

header .logo img {
  max-width: 180px;
  margin-bottom: 2rem;
}

h1 {
  font-size: 3rem;
  color: #1a2e44;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #888;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
