:root {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #172331;
  background: #f4f7fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(13, 94, 166, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(20, 124, 88, 0.12), transparent 36%),
    #f4f7fb;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 18px 52px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #053b70;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a,
.cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  color: #0d4b79;
  background: #ffffff;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.16), 0 12px 20px rgba(42, 58, 72, 0.18);
  font-weight: 800;
  text-decoration: none;
}

.hero,
.panel {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.14), 0 28px 48px rgba(42, 58, 72, 0.22);
}

.hero {
  padding: clamp(28px, 5vw, 54px);
  margin-bottom: 26px;
}

.hero h1 {
  margin: 0 0 14px;
  color: #053b70;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.hero p,
.lead {
  color: #334155;
  font-size: 1.1rem;
  line-height: 1.75;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.panel {
  padding: 20px;
}

.panel h2,
.panel h3 {
  margin-top: 0;
  color: #0d4b79;
}

.panel li {
  margin: 9px 0;
  line-height: 1.55;
}

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.keywords li {
  margin: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #0d4b79;
  font-weight: 800;
}

.footer {
  margin-top: 34px;
  color: #5f7085;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }
}
