:root {
  --bg: #f5f7f9;
  --surface: #ffffff;
  --ink: #121722;
  --muted: #5e6878;
  --line: #dce2ea;
  --brand: #0b7f4f;
  --brand-2: #164a8a;
  --accent: #f3b61f;
  --soft: #ecf7f2;
  --risk: #b42318;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

a,
button,
.btn {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(243, 182, 31, 0.9);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 9px 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 6px;
  color: #9aa5b4;
}

.breadcrumb a {
  color: var(--brand-2);
}

.header-inner,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
}

.logo-image {
  display: block;
  width: 136px;
  max-height: 38px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  padding: 28px 0 22px;
  background: linear-gradient(135deg, #0f231c 0%, #0b7f4f 60%, #164a8a 120%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: 32px;
  line-height: 1.12;
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

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

p {
  margin: 0 0 12px;
}

.hero-copy {
  max-width: 780px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.section {
  padding: 22px 0 0;
}

.page-meta {
  padding: 12px 0 0;
  background: var(--bg);
}

.page-meta .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-meta span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  min-width: 0;
  overflow-wrap: anywhere;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  min-width: 0;
  overflow-wrap: anywhere;
}

.steps {
  margin: 12px 0 0;
  padding-left: 22px;
}

.steps li {
  margin-bottom: 10px;
}

.btn-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
}

.btn-primary {
  border-color: transparent;
  background: var(--accent);
  color: #17130a;
}

.notice {
  padding: 14px;
  border-left: 4px solid var(--risk);
  border-radius: var(--radius);
  background: #fff3f1;
  color: #4f1b16;
  overflow-wrap: anywhere;
}

.link-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.link-list a {
  color: var(--brand-2);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-list summary {
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.faq-list p {
  margin: 0;
  padding: 12px 14px 14px;
}

.info-table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-table th,
.info-table td,
.data-table th,
.data-table td {
  padding: 10px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th,
.data-table th {
  background: var(--soft);
}

.bottom-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

main {
  padding-bottom: 76px;
}

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .hero {
    padding: 54px 0 42px;
  }

  h1 {
    font-size: 46px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-row {
    grid-template-columns: max-content max-content;
  }

  .bottom-cta {
    display: none;
  }

  main {
    padding-bottom: 42px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .container {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  .panel {
    padding: 15px;
  }

  .info-table,
  .data-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info-table th,
  .info-table td,
  .data-table th,
  .data-table td {
    min-width: 148px;
  }
}
