:root {
  color: #171923;
  background: #f6f7f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f6f7f9;
}

a {
  color: #9f3b24;
}

.contentHeader,
.contentMain,
.contentFooter {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.contentHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 18px;
  border-bottom: 1px solid #dfe3e8;
}

.contentBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #171923;
  font-weight: 780;
  text-decoration: none;
}

.contentBrand img {
  width: 34px;
  height: 34px;
}

.contentNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
}

.contentNav a,
.contentFooter a {
  color: #4b5565;
  text-decoration: none;
}

.contentNav a:hover,
.contentFooter a:hover {
  color: #9f3b24;
  text-decoration: underline;
}

.contentMain {
  padding: 42px 0 56px;
}

.breadcrumbs {
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumbs a {
  color: #6b7280;
}

h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h2 {
  margin: 42px 0 12px;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.012em;
}

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

p,
li,
td,
th {
  color: #4b5565;
  font-size: 16px;
  line-height: 1.72;
}

.lead {
  max-width: 760px;
  margin: 0 0 20px;
  color: #3d4655;
  font-size: 20px;
  line-height: 1.58;
}

.byline {
  margin: 0 0 26px;
  color: #7a8290;
  font-size: 13px;
}

.primaryCta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  background: #b7472a;
  color: #fff;
  font-weight: 760;
  text-decoration: none;
}

.primaryCta:hover {
  background: #8f321c;
}

.note,
.warning,
.privacyNote {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid #d7dce4;
  border-left-width: 4px;
  border-radius: 8px;
  background: #fff;
}

.note {
  border-left-color: #697386;
}

.warning {
  border-left-color: #c97924;
  background: #fffaf2;
}

.privacyNote {
  border-left-color: #b7472a;
  background: #fff9f6;
}

.note strong,
.warning strong,
.privacyNote strong {
  color: #171923;
}

.steps,
.resourceGrid,
.checkGrid {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.steps {
  counter-reset: steps;
}

.step,
.resourceCard,
.checkCard {
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.step {
  counter-increment: steps;
}

.step h3::before {
  content: counter(steps) ". ";
  color: #b7472a;
}

.step h3,
.resourceCard h3,
.checkCard h3 {
  margin-top: 0;
}

.step p,
.resourceCard p,
.checkCard p {
  margin-bottom: 0;
}

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

.resourceCard a {
  color: #171923;
  font-weight: 760;
}

.tableWrap {
  overflow-x: auto;
  margin: 22px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 13px 14px;
  border: 1px solid #dfe3e8;
  text-align: left;
  vertical-align: top;
}

th {
  color: #262d38;
  background: #eef1f5;
}

.contentFooter {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 0 40px;
  border-top: 1px solid #dfe3e8;
  color: #7a8290;
  font-size: 13px;
}

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

  .contentNav {
    justify-content: flex-start;
  }

  .contentMain {
    padding-top: 32px;
  }

  .resourceGrid,
  .checkGrid {
    grid-template-columns: 1fr;
  }
}
