body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f4f5;
  background: linear-gradient(to bottom, #f8f9fa, #e6e6e6);
  color: #333;
  text-align: center;
}

.logo {
  width: 400px;
  max-width: 90%;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  max-width: 600px;
}

p {
  font-size: 1.1rem;
  color: #444;
}

a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}