html {
  color-scheme: light;
}

body {
  background-color: #f9fafb;
  color: #111827;
}

input,
textarea,
select,
button {
  color-scheme: light;
}

.section-underline {
  position: relative;
  display: inline-block;
}
.section-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  background-color: currentColor;
}
/* Custom blue color from the footer and headers */
.text-custom-blue {
  color: #1a4a8a;
}
.bg-custom-blue {
  background-color: #1a4a8a;
}
.border-custom-blue {
  border-color: #1a4a8a;
}
/* Top banner cyan */
.bg-top-cyan {
  background-color: #0093c9;
}

/* Mobile menu transition */
#mobile-menu {
  transition: transform 0.3s ease-in-out;
}
