body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f5f9fd;
  color: #0d1b2a;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 30px;
}

.topbar {
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 56px;
}

.name {
  font-size: 20px;
  font-weight: 800;
}

.small {
  font-size: 13px;
  color: #4b5563;
}

.hero {
  margin-top: 30px;
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.hero h1 {
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 16px;
  margin-top: 20px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
}

.card h3 {
  margin-top: 0;
  color: #0b3a6a;
  font-size: 14px;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  padding: 10px 16px;
  background: #0b3a6a;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.footer {
  margin-top: 30px;
  font-size: 12px;
  color: #6b7280;
}
