body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background-color: #f9fafb;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.header {
  background: linear-gradient(90deg, #0f2a44, #1e4e79);
  color: white;
}

.header-inner {
  padding-top: 24px;
  padding-bottom: 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  background: transparent;
}


.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero {
  margin-top: 34px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 12px 0;
  font-size: 42px;
  letter-spacing: -0.4px;
}

.hero p {
  margin: 0 auto 18px auto;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-note {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.85;
}

.btn-primary {
  background: #ffffff;
  color: #0f2a44;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.link {
  color: #0f2a44;
}

.muted {
  color: #5b6b7a;
  margin-left: 8px;
  font-size: 12px;
}

.section {
  background: #ffffff;
}

.section.alt {
  background: #eef2f6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

h2, h3 {
  margin-top: 0;
}

ul {
  padding-left: 20px;
}

.footer {
  background: #0f2a44;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 720px) {
  .container {
    padding: 28px 18px;
  }
  .header-inner {
    padding-top: 18px;
    padding-bottom: 34px;
  }
  .brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  background: transparent;
}

  .hero h1 {
    font-size: 32px;
  }
}