@page {
  size: A4;
  margin: 16mm;
}
:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #17362d;
}
* {
  box-sizing: border-box;
}
body {
  max-width: 850px;
  margin: 0 auto;
  padding: 24px;
  background: #f5f7f3;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.toolbar a {
  color: #185843;
}
button {
  border: 0;
  border-radius: 8px;
  background: #185843;
  color: white;
  padding: 11px 18px;
  font: inherit;
  cursor: pointer;
}
.sheet {
  min-height: 270mm;
  padding: 22mm 18mm;
  background: white;
  box-shadow: 0 8px 30px #17362d1c;
}
.brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #b38d4b;
  padding-bottom: 10px;
  font-weight: bold;
}
.brand span:first-child {
  font-family: Georgia, serif;
  font-size: 22px;
}
.brand span:last-child {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 {
  margin: 28px 0 8px;
  font-family: Georgia, serif;
  font-size: 29px;
  line-height: 1.2;
}
h2 {
  margin: 24px 0 10px;
  font-family: Georgia, serif;
  font-size: 17px;
}
p,
li,
td,
th {
  font-size: 12px;
  line-height: 1.5;
}
.sub {
  color: #52655d;
  max-width: 650px;
}
.note {
  margin-top: 20px;
  padding: 10px 12px;
  border-left: 3px solid #b38d4b;
  background: #f5f7f3;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  display: flex;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid #e2e9e3;
}
.box {
  flex: none;
  width: 13px;
  height: 13px;
  margin-top: 2px;
  border: 1.5px solid #185843;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
th,
td {
  border: 1px solid #cbd8cf;
  padding: 9px;
  text-align: left;
  vertical-align: top;
}
th {
  background: #edf3ef;
}
.empty-row td {
  height: 42px;
}
.footer {
  margin-top: 25px;
  border-top: 1px solid #cbd8cf;
  padding-top: 9px;
  color: #52655d;
  font-size: 10px;
}
@media print {
  body {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    background: white;
  }
  .toolbar {
    display: none;
  }
  .sheet {
    min-height: auto;
    padding: 0;
    box-shadow: none;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
}
