*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-text);
  background: var(--color-white);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: var(--fs-3xl);
  margin-bottom: 12px;
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  max-width: 560px;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .section-desc {
  margin: 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-teal);
}

.text-link:hover {
  color: var(--color-teal-dark);
}

.text-link .chevron {
  width: 14px;
  height: 14px;
}

.disclaimer {
  margin-top: 28px;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}
