html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 37.5em) {
  html {
    font-size: 50%;
  }
}
@media screen and (min-width: 121.875em) {
  html {
    font-size: 65%;
  }
}

body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  background-color: #094067;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 4px 0;
  transition: top 0.3s ease-in-out;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.hamburger_menu {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;
}

.hamburger_menu:focus-visible {
  outline: 3px solid #094067;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Focus indicators for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #094067;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Remove default outline for mouse users, keep for keyboard users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visually-hidden-focusable:focus,
.visually-hidden-focusable:active {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}