:root {
  --primary: #0b2545;
  --primary-2: #16385f;
  --primary-3: #2a5d8f;
  --bg: #f3f6fa;
  --white: #ffffff;
  --line: #d7e0ea;
  --line-2: #c5d1dd;
  --text: #172535;
  --text-2: #415469;
  --text-3: #66788c;
  --soft: #f8fbfe;
  --soft-2: #edf3f8;
  --success: #1f6b42;
  --info-bg: #fff8ef;
  --info-bg-2: #fffdf8;
  --info-border: #e5d6b9;
  --info-border-strong: #caa468;
  --info-text: #5b4a34;
  --shadow: 0 8px 24px rgba(11, 37, 69, 0.06);
  --shadow-2: 0 14px 36px rgba(11, 37, 69, 0.1);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 18px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary-3);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.18s ease;
}

a:hover {
  color: var(--primary);
}

button {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.55rem, 2.45vw, 2.45rem);
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

p,
ul,
ol,
table {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.45rem;
}

strong {
  color: var(--primary);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.main-header {
  background: var(--primary);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(11, 37, 69, 0.14);
}

.main-header .container {
  min-height: 76px;
  display: flex;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-link:hover {
  color: #fff;
  opacity: 0.95;
}

.logo-text {
  font-size: 1.18rem;
  line-height: 1;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding-left: 14px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.channel-link:hover {
  color: #fff;
}

.section-nav {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11, 37, 69, 0.03);
}

.section-nav .container {
  overflow: visible;
}

.section-nav-shell {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.section-nav-track {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: default;
  touch-action: pan-x;
}

.section-nav-track::-webkit-scrollbar {
  display: none;
}

.section-nav-list {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
}

.section-nav-list li {
  margin: 0;
  flex: 0 0 auto;
}

.section-nav-list li + li {
  margin-top: 0;
}

.section-nav-list a {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  position: relative;
}

.section-nav-list a::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  bottom: 15px;
  width: 1px;
  background: #e6edf5;
}

.section-nav-list li:last-child a::after {
  display: none;
}

.section-nav-list a:hover {
  background: #f6f9fc;
  color: var(--primary);
}

.section-nav-list a[aria-current="page"] {
  background: #f8fbfe;
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.section-nav-list a[aria-current="page"]:hover {
  background: #f8fbfe;
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-home-item > a {
  font-weight: 800;
}

.section-nav-arrow {
  display: none;
  flex: 0 0 40px;
  width: 40px;
  min-height: 46px;
  padding: 0;
  border: 0;
  background: #ffffff;
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  z-index: 3;
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.section-nav.is-overflowing .section-nav-arrow {
  display: block;
}

.section-nav-arrow:hover:not([disabled]) {
  background: #f6f9fc;
  color: var(--primary);
}

.section-nav-arrow[disabled] {
  background: #ffffff;
  color: #dbe4ec;
  cursor: default;
  opacity: 1;
}

.section-nav-arrow--prev {
  border-right: 1px solid var(--line);
}

.section-nav-arrow--next {
  border-left: 1px solid var(--line);
}

.section-nav-shell::before,
.section-nav-shell::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  pointer-events: none;
  z-index: 2;
}

.section-nav-shell::before {
  left: 40px;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.section-nav-shell::after {
  right: 40px;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.section-nav.can-scroll-left .section-nav-shell::before {
  display: block;
}

.section-nav.can-scroll-right .section-nav-shell::after {
  display: block;
}

main {
  padding: 28px 0 28px;
}

.home-page-main > section {
  margin-bottom: 28px;
}

.inner-page main.container,
main.container {
  padding-top: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0) 20%),
    linear-gradient(135deg, rgba(11, 37, 69, 1) 0%, rgba(22, 56, 95, 0.96) 100%);
  color: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-2);
}

.hero > h1,
.hero > p,
.hero > .trust-signal,
.hero > .cta-group {
  width: 100%;
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
}

.trust-signal {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f8fd;
  font-weight: 700;
  font-size: 0.95rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: #fff;
  color: var(--primary);
}

.btn-primary:hover {
  background: #f7fbff;
  color: var(--primary);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.index-grid > .container,
.state-directory > .container,
.how-it-works > .container,
.why-use-us > .container {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}

.section-title {
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--text-2);
  max-width: 780px;
  margin-bottom: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: default;
}

.service-card + .service-card {
  border-left: 1px solid #dbe5ef;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1.03rem;
  line-height: 1.25;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.72;
}

.coverage-summary {
  margin-top: 18px;
  padding: 16px 18px;
  background: linear-gradient(180deg, var(--info-bg-2) 0%, var(--info-bg) 100%);
  border: 1px solid var(--info-border);
  border-radius: 12px;
  color: var(--info-text);
}

.a-z-wrapper {
  margin-top: 18px;
}

.az-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.az-list li {
  margin: 0;
}

.az-list li + li {
  margin-top: 0;
}

.az-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(11, 37, 69, 0.04);
  text-align: center;
}

.az-list a:hover {
  background: var(--soft);
  border-color: var(--primary-3);
}

.step-list {
  margin-top: 16px;
  margin-bottom: 0;
}

.step-list li {
  margin-bottom: 14px;
  color: var(--text);
}

.content-wrapper {
  color: var(--text);
}

.content-wrapper p:last-child {
  margin-bottom: 0;
}

.breadcrumb {
  margin-bottom: 20px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 0;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.25;
  color: var(--text-3);
}

.breadcrumb li + li {
  margin-top: 0;
}

.breadcrumb li + li::before {
  content: "/";
  display: inline-flex;
  align-items: center;
  margin: 0 10px;
  color: #8d9db0;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
  color: var(--text-2);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumb a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.breadcrumb a[aria-current="page"]:hover {
  color: var(--primary);
  text-decoration: none;
}

.inner-page article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-header {
  padding: 32px 32px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.article-body {
  padding: 32px;
}

.article-body > * + * {
  margin-top: 22px;
}

.article-body h2[id],
.article-body h3[id] {
  scroll-margin-top: 20px;
}

.article-body p {
  color: var(--text);
}

.article-body p + p {
  margin-top: 14px;
}


.article-body h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8eef5;
}

.article-body h3 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.last-verified {
  margin: 8px 0 0;
  color: var(--text-3);
  font-size: 0.92rem;
  font-weight: 600;
}

.toc {
  margin-top: 18px;
  padding: 18px 18px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.toc strong,
.toc-title {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.toc ul {
  margin: 0;
  padding-left: 18px;
}

.toc li {
  margin-top: 6px;
}

.toc a {
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

.faq {
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, var(--info-bg-2) 0%, var(--info-bg) 100%);
  border: 1px solid var(--info-border);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.local-picker {
  padding: 20px 0 20px 0;
  background: #fff;
}

.faq p,
.faq li {
  color: var(--info-text);
}

.tips {
  padding: 14px 16px;
  background: #fff4df;
  border: 1px solid #e7cca0;
  border-radius: 10px;
  color: var(--info-text);
}

.required,
.steps,
.contact {
  margin-top: 14px;
}

.local-picker p {
  color: var(--text-2);
  margin-bottom: 0;
}

.local-picker-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.local-picker-list li {
  margin: 0;
}

.local-picker-list li + li {
  margin-top: 0;
}

.local-picker-list a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  box-shadow: 0 2px 8px rgba(11, 37, 69, 0.04);
}

.local-picker-list a:hover {
  background: #fff;
  border-color: var(--primary-3);
  box-shadow: 0 6px 16px rgba(11, 37, 69, 0.08);
  transform: translateY(-1px);
}

.record-type-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.record-type-list li {
  margin: 0;
  display: flex;
}

.record-type-list li + li {
  margin-top: 0;
}

.record-type-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 6px 18px rgba(11, 37, 69, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.record-type-link:hover {
  transform: translateY(-2px);
  border-color: var(--primary-3);
  background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
  box-shadow: 0 12px 28px rgba(11, 37, 69, 0.1);
  color: var(--text);
}

.record-type-link:focus-visible {
  outline: 3px solid rgba(42, 93, 143, 0.22);
  outline-offset: 3px;
  border-radius: 16px;
}

.record-type-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  box-shadow: 0 6px 14px rgba(11, 37, 69, 0.14);
  white-space: normal;
}

.record-type-desc {
  display: block;
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.65;
}

.record-type-link:hover .record-type-label {
  background: var(--primary-2);
}

.contact {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.contact li {
  padding: 6px 0;
  border-bottom: 1px solid #edf2f7;
}

.contact li:last-child {
  border-bottom: 0;
}

.faq h2 {
  margin-bottom: 14px;
}

.faq h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.06rem;
}

.faq p:last-child {
  margin-bottom: 0;
}

.data-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.data-table thead {
  background: var(--primary);
  color: #fff;
}

.data-table th,
.data-table td {
  padding: 14px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  font-weight: 700;
  font-size: 0.95rem;
}

.data-table tbody tr:nth-child(even) {
  background: #fbfdff;
}

.data-table tbody tr:hover {
  background: #f3f8fc;
}

.main-footer {
  margin-top: 28px;
  padding: 34px 0 40px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
}

.main-footer p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.footer-links {
  margin-bottom: 14px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin-bottom: 0;
  font-size: 0.92rem;
  opacity: 0.9;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  min-width: 90px;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(11, 37, 69, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.back-to-top:hover {
  background: var(--primary-2);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(42, 93, 143, 0.25);
  outline-offset: 2px;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 22px;
  }

  .service-card {
    padding: 0 18px;
    border-left: 0;
  }

  .service-card + .service-card {
    border-left: 0;
  }

  .service-card:nth-child(odd) {
    padding-left: 0;
  }

  .service-card:nth-child(even) {
    padding-right: 0;
    border-left: 1px solid #dbe5ef;
  }

  .hero {
    min-height: auto;
    padding: 48px 32px;
  }

  .local-picker-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .main-header .container {
    min-height: 68px;
    padding: 10px 0;
  }

  .site-logo {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .site-logo img {
    width: 35px;
    height: 35px;
  }

  .section-nav .container {
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .section-nav-arrow {
    flex-basis: 36px;
    width: 36px;
    min-height: 44px;
    font-size: 22px;
  }

  .section-nav-shell::before {
    left: 36px;
  }

  .section-nav-shell::after {
    right: 36px;
  }

  .section-nav-list a {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12.5px;
    border-bottom-width: 2px;
  }

  .section-nav-list a::after {
    top: 13px;
    bottom: 13px;
  }

  main {
    padding: 18px 0 42px;
  }

  .hero {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .hero > h1,
  .hero > p,
  .hero > .trust-signal,
  .hero > .cta-group {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .cta-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .index-grid > .container,
  .state-directory > .container,
  .how-it-works > .container,
  .why-use-us > .container,
  .article-header,
  .article-body {
    padding: 22px 18px;
  }

  .grid-container {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .service-card {
    padding: 0;
    border-left: 0 !important;
  }

  .service-card + .service-card {
    padding-top: 18px;
    border-top: 1px solid #dbe5ef;
  }

  .local-picker-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .az-list {
    gap: 10px;
  }

  .az-list a {
    min-height: 44px;
  }

  .record-type-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .record-type-link {
    padding: 16px;
    border-radius: 14px;
  }

  .record-type-label {
    min-height: 36px;
    padding: 0 12px;
    margin-bottom: 10px;
    font-size: 0.96rem;
  }

  .record-type-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .data-table,
  .data-table thead,
  .data-table tbody,
  .data-table th,
  .data-table td,
  .data-table tr {
    display: block;
    width: 100%;
  }

  .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .data-table tbody tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .data-table td {
    border: 0;
    padding: 8px 14px;
  }

  .data-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
  }
}

@media (max-width: 560px) {
  .channel-link {
    display: none;
  }

  .local-picker-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2,
  .article-body h2 {
    font-size: 1.45rem;
  }

  .trust-signal {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
  }

  .back-to-top {
    min-width: 78px;
    min-height: 40px;
    font-size: 0.88rem;
  }

  .inner-page main.container,
  main.container {
    padding-top: 15px;
  }

  .breadcrumb {
    margin-bottom: 15px;
  }

  .hero {
    border-radius: 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .article-header h1 {
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .article-body h2,
  .local-picker h2,
  .key-info h2,
  .faq h2 {
    font-size: 1.22rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .breadcrumb li {
    font-size: 0.75rem;
  }

  .container {
    width: min(var(--container), calc(100% - 0px));
  }

  .section-nav-arrow {
    flex-basis: 34px;
    width: 34px;
    min-height: 42px;
    font-size: 20px;
  }

  .section-nav-shell::before {
    left: 34px;
  }

  .section-nav-shell::after {
    right: 34px;
  }

  .section-nav-list a {
    min-height: 42px;
    padding: 0 10px;
    font-size: 12px;
  }

  main {
    padding: 0;
  }

  .main-header,
  .breadcrumb {
    padding: 0 10px;
  }

  .main-footer {
    padding: 30px 15px;
  }

  .inner-page article {
    border-radius: 0;
    border: 0;
  }

  .index-grid > .container,
  .state-directory > .container,
  .how-it-works > .container,
  .why-use-us > .container {
    border-radius: 0;
    border: 0;
  }

  .faq {
    padding: 22px 15px 20px;
  }
  
  .record-type-label {
    font-size: 0.8rem;
  }
}