body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f9f9;
  color: #01353f;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.5rem;
  color: #007d8a;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin: 5px 0;
}

.tagline {
  font-weight: bold;
  color: #0098a6;
  margin-top: 20px;
}

/* Optional loading animation */
.loader {
  margin: 30px auto 0;
  width: 50px;
  height: 50px;
  border: 5px solid #b2e1e7;
  border-top: 5px solid #0098a6;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
