.container {
  max-width: 1050px;
  margin: auto;
  padding: 0 16px;
}

.site-header {
  background: #00205b;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.nav-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  min-width: 60px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-top,
.brand-bottom {
  display: block;
}

.main-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  background: #0063b1;
  text-decoration: none;
}

.site-footer {
  margin-top: 60px;
  background: #f7f9fc;
  border-top: 1px solid #e5eaf0;
  color: #334155;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 30px;
}

.footer-content {
  max-width: 860px;
}

.footer-content p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

.footer-content p:last-child {
  margin-bottom: 0;
}

.footer-label {
  font-weight: 600;
  color: #1e293b;
}

.footer-content a {
  color: #0f4d85;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.footer-content a:hover,
.footer-content a:focus-visible {
  color: #0b3a66;
}

.footer-nav {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #dbe3ec;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #64748b;
}

.footer-nav a {
  color: #334155;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #0f4d85;
  text-decoration: underline;
}

.footer-separator {
  color: #94a3b8;
}

@media (max-width: 800px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 32px 18px 24px;
  }

  .footer-content p {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }

  .footer-nav {
    gap: 6px;
    margin-top: 20px;
  }

  .footer-nav a {
    font-size: 0.88rem;
  }
}
