:root {
  --bg: #f7f9fc;
  --panel: #ffffff;
  --text: #172033;
  --muted: #5f6c80;
  --line: #dbe3ef;
  --brand: #176b87;
  --brand-dark: #0f4b60;
  --accent: #f2b84b;
  --shadow: 0 14px 36px rgba(23, 32, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 16px 24px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--brand);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  letter-spacing: 0;
  width: 34px;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef5f8 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.section {
  margin: 0 auto;
  max-width: 1120px;
  padding: 64px 24px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.eyebrow {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
  margin: 0 0 16px;
}

.lead {
  font-size: 19px;
  max-width: 720px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
}

.summary-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.summary-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.summary-list li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  list-style: none;
}

.icon {
  align-items: center;
  background: #e5f2f5;
  border-radius: 8px;
  color: var(--brand-dark);
  display: inline-flex;
  flex: 0 0 32px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

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

.two-column {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.info-table {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.info-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 160px minmax(0, 1fr);
  padding: 15px 18px;
}

.info-row:last-child {
  border-bottom: 0;
}

.info-label {
  color: var(--muted);
  font-size: 14px;
}

.notice {
  background: #fff8e8;
  border: 1px solid #f0d498;
  border-radius: 8px;
  color: #6b501d;
  padding: 16px;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  color: var(--muted);
  display: grid;
  font-size: 14px;
  gap: 6px;
}

.field {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea.field {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 24px;
}

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

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

  .hero-inner,
  .section {
    padding: 44px 20px;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 25px;
  }

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