* {
-ms-overflow-style: none;  /* IE and Edge */
scrollbar-width: none;     /* Firefox */
}

/* Webkit browsers like Chrome, Safari, newer Edge */
*::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
}
  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 0px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #666;
  }

  /* Remove tap highlight on mobile */
  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Improve text rendering */
  body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Focus outline styles */
  :focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  /* Print styles */
  @media print {
    .no-print {
      display: none !important;
    }
    
    a[href]:after {
      content: " (" attr(href) ")";
    }
  }

  .color-primary-blue {
    color: #05354f;
  }

.hero-button {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2rem;
  margin: 0;
  font-size: inherit;
  position: relative;
  display: inline-block;
  letter-spacing: 0.05rem;
  font-weight: 700;
  font-size: 17px;
  border-radius: 5px;
  overflow: hidden;
  background: #69cf6e;
  color: ghostwhite;
}

.hero-button span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.hero-button::before,
.hero-button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-button::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(10deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

@media (hover: hover) {
  .hero-button:hover::before {
    transform: translate3d(100%, 0, 0);
  }

  .hero-button:hover span {
    color: black;
  }
}
/* Make the navbar fixed at the top with same layout */
/* #navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
} */

/* Remove padding from main content so hero can go behind navbar */
/* #main-content {
  padding-top: 0;
} */

/* Make hero section go behind the fixed navbar and take full width */
/* #hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
} */

/* Optionally, make sure the hero's parent is not restricting width */
/* #root.isolate {
  padding-left: 0 !important;
  padding-right: 0 !important;
} */
.cookie-banner {
  position: fixed;
  bottom: 0;
  background: #222;
  color: #fff;
  padding: 1em;
  width: 20em;
  margin: 1em;
  z-index: 99999;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: small;
}

.cookie-accept-button {
  background-color: white;
  color: black;
  border: none;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
  font-size: small;
  margin-top: 0.5em;
}

.cookie-accept-button:hover {
  background-color: #05354f;
  color: rgb(223, 223, 223);
}
.background-gradient {
  clip-path: polygon(74.1% 44.1%,
      100% 61.6%,
      97.5% 26.9%,
      85.5% 0.1%,
      80.7% 2%,
      72.5% 32.5%,
      60.2% 62.4%,
      52.4% 68.1%,
      47.5% 58.3%,
      45.2% 34.5%,
      27.5% 76.7%,
      0.1% 64.9%,
      17.9% 100%,
      27.6% 76.8%,
      76.1% 97.7%,
      74.1% 44.1%);
}