@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #ffffff, #f3f7ff);
  color: #1c4e7d;
  padding: 2rem;
  line-height: 1.7;
}

.container {
  max-width: 800px;
  margin: auto;
  background: #ffffffcc;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  height: 60px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #019cc9;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  color: #1c4e7d;
}

a {
  color: #019cc9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  color: #8e8e8e;
}

.site-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

