:root {
  --bg: #f3f8f6;
  --panel: #ffffff;
  --ink: #132f70;
  --muted: #3f5a7f;
  --line: #c8d8e8;
  --accent: #1b3f89;
  --accent-2: #1f7e3c;
  --accent-3: #102a66;
  --shadow: 0 14px 30px rgba(16, 42, 102, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 11% 10%, rgba(31, 126, 60, 0.2), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(16, 42, 102, 0.16), transparent 34%),
    linear-gradient(180deg, #fbfefd 0%, #f3f8f6 46%, #edf4fa 100%);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 2vw, 2rem);
  background: rgba(248, 252, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(9px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-logo {
  width: auto;
  height: 64px;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
}

.brand-subtitle {
  color: var(--accent-2);
  font-style: italic;
  font-weight: 700;
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.46rem 0.68rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--accent-3);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #ffffff;
  color: var(--ink);
  padding: 0.45rem 0.7rem;
  font-weight: 700;
}

.page-main {
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1.15rem;
  animation: rise 620ms ease forwards;
}

.kicker {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Public Sans", "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

h1 {
  margin: 0.6rem 0 0.95rem;
  font-size: clamp(1.65rem, 5vw, 3.2rem);
  color: var(--accent-3);
}

h2 {
  margin: 0.2rem 0 0.95rem;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

p {
  margin: 0.7rem 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.15rem);
}

.hero img,
.panel img {
  margin-top: 0.95rem;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 0.72rem 1.08rem;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:link,
.btn:visited,
.btn:hover,
.btn:focus-visible {
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
}

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

.card-link {
  color: inherit;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
  text-decoration: none;
}

.card {
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.card p {
  margin-top: 0;
}

ul {
  margin: 0.4rem 0;
  padding-left: 1.2rem;
}

li {
  margin: 0.45rem 0;
}

.document-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.document-list li {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #f8fbff;
  padding: 0.9rem 1rem;
}

.document-list a {
  font-weight: 800;
  color: var(--accent-3);
  text-decoration: none;
}

.document-list a:hover {
  text-decoration: underline;
}

.contact-note {
  color: var(--muted);
  font-style: italic;
}

a {
  color: var(--accent);
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 1.2rem 1rem 2rem;
}

.footer-logo {
  width: min(240px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% - 4px);
    right: 0.9rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
    min-width: 240px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 0.6rem;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .brand-logo {
    width: auto;
    height: 46px;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    display: none;
  }
}
