:root {
  --bg: #f5f7fb;
  --ink: #102033;
  --muted: #5f6f82;
  --brand: #f59e0b;
  --deep: #0b3041;
  --line: #dfe7ef;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 15px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.info-header {
  background: var(--deep);
  color: #fff;
  border-bottom: 4px solid var(--brand);
}

.info-header-inner,
.info-main,
.info-footer-inner {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
}

.info-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.info-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none;
}

.info-brand img {
  width: auto;
  height: 44px;
  display: block;
}

.info-brand span {
  color: var(--brand);
  font-size: 21px;
}

.info-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.info-nav a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
}

.info-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.info-main {
  padding: 34px 0 42px;
}

.info-hero {
  margin-bottom: 22px;
}

.info-kicker {
  margin: 0 0 8px;
  color: #8a5a00;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

p {
  margin: 0 0 12px;
}

ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

li + li {
  margin-top: 6px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.info-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  margin-top: 14px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-note {
  border-left: 4px solid var(--brand);
  background: #fff8e7;
  border-radius: 8px;
  padding: 14px 16px;
  color: #3b2a08;
}

.info-list-plain {
  list-style: none;
  padding-left: 0;
}

.info-list-plain li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.info-list-plain li:last-child {
  border-bottom: 0;
}

.info-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.info-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0;
  font-size: 13px;
}

.info-footer a {
  color: var(--ink);
}

@media (max-width: 700px) {
  .info-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .info-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
  }
}
