@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2") format("woff2");
}

.sms-chrome {
  --accent: #c2410c;
  --accent-hover: #9a3412;
  --blue: #0a6ea0;
  --ink: #2e2e2e;
  --line: #d9dde1;
  --footer: #343a40;
  --container: 1200px;
  box-sizing: border-box;
  color: var(--ink);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

.sms-chrome *,
.sms-chrome *::before,
.sms-chrome *::after {
  box-sizing: border-box;
}

.sms-chrome a {
  color: inherit;
}

.sms-chrome img {
  display: block;
  max-width: 100%;
}

.sms-chrome button,
.sms-chrome a {
  -webkit-tap-highlight-color: transparent;
}

.sms-chrome :focus-visible {
  outline: 3px solid #0a6ea0;
  outline-offset: 3px;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10200;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.sms-chrome .container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10050;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  flex: 1;
}

.nav-list,
.submenu,
.social-list,
.footer-nav,
.header-social {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list > li {
  position: relative;
}

.nav-list a,
.submenu-toggle {
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.nav-list a:hover,
.submenu-toggle:hover,
.nav-list a[aria-current="page"] {
  color: var(--blue);
}

.submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
}

.submenu-toggle::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  z-index: 10051;
  width: 220px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #e7eaed;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
  transition: 0.18s ease;
}

.submenu-open .submenu {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.submenu a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.header-social a {
  display: flex;
  min-width: 36px;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.header-social svg {
  display: block;
  width: 30px;
  height: 30px;
}

.header-social span {
  margin-top: 4px;
  color: #006400;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.support-link {
  color: var(--accent);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sms-chrome .button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.sms-chrome .button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 4px;
  background: var(--footer);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.site-footer {
  padding: 62px 0 46px;
  background: var(--footer);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand img {
  width: 66px;
  height: 70px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0 0 12px;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.footer-contact {
  text-align: right;
}

.social-list {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.social-list a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-weight: 700;
  text-decoration: none;
}

.legal {
  max-width: 470px;
  margin: 28px 0 0 84px;
  color: #e1e5e8;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10100;
  display: flex;
  max-width: 560px;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid #d7dadd;
  border-radius: 9px;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.cookie-banner .button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 15px;
  background: #111;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .header-row {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 0;
    z-index: 10050;
    display: none;
    overflow-y: auto;
    padding: 28px 20px 50px;
    background: #fff;
  }

  .site-nav.open {
    display: block;
  }

  .nav-list {
    display: block;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .nav-list > li {
    border-bottom: 1px solid var(--line);
  }

  .nav-list > li > a,
  .submenu-toggle {
    display: flex;
    width: 100%;
    padding: 15px 4px;
  }

  .submenu {
    position: static;
    display: none;
    width: auto;
    padding: 0 0 10px 12px;
    visibility: visible;
    opacity: 1;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .submenu-open .submenu {
    display: block;
  }

  .header-actions .support-link,
  .header-actions .header-social,
  .header-actions .button {
    display: none;
  }
}

@media (max-width: 760px) {
  .sms-chrome .container {
    width: min(100% - 32px, var(--container));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-contact {
    text-align: left;
  }

  .social-list {
    justify-content: flex-start;
  }

  .legal {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sms-chrome,
  .sms-chrome *,
  .sms-chrome *::before,
  .sms-chrome *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

#allrecords .sms-chrome ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#allrecords .sms-chrome a {
  color: inherit;
}

#allrecords .site-header .nav-list > li > a,
#allrecords .site-header .submenu-toggle,
#allrecords .site-header .submenu a {
  color: #2e2e2e;
  text-decoration: none;
}

#allrecords .site-header .nav-list a:hover,
#allrecords .site-header .submenu-toggle:hover,
#allrecords .site-header .nav-list a[aria-current="page"] {
  color: #0a6ea0;
}

#allrecords .site-header .support-link {
  color: #c2410c;
  text-decoration: underline;
}

#allrecords .sms-chrome .button {
  color: #fff;
  text-decoration: none;
}

#allrecords .site-footer a {
  color: #fff;
  text-decoration: underline;
}

