* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f9fbfc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.container {
  text-align: center;
}

.logo img {
  width: 200px;
  margin-bottom: 10px;
}

.logo h1 {
  color: #1d9fd6;
  font-size: 2rem;
  margin-bottom: 5px;
}

.tagline {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.card {
  background: white;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  display: inline-block;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.subtext {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  background-color: #f0f0f0;
  color: #333;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #1d9fd6;
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

footer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #aaa;
}
