.styles_transitionOutLeft__OdcT7 {
    transform: translateX(-100%)
}

.styles_transitionOutLeft__OdcT7,
.styles_transitionOutRight__s6g8m {
    opacity: 0;
    transition: opacity .25s, transform .5s, width .5s, visibility .5s, height .5s
}

.styles_transitionOutRight__s6g8m {
    transform: translateX(100%)
}

.styles_transitionIn___eHuB {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .5s, transform .5s, visibility .5s, height .5s
}

.styles_transitionInitialize__ZpbO0 {
    opacity: 0;
    transform: translateX(100%)
}

.styles_transitionFadeIn__h64_g {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .5s, visibility .5s, height .5s
}

.styles_stepNavigationWrapper__Shpfx {
    display: grid;
    grid-template-rows: 1fr;
    justify-content: center;
    align-content: center;
    overflow: hidden;
    max-width: 300vw;
    margin: 0 auto
}

.styles_stepNavigationWrapper__Shpfx section {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

/* Basic styles */
.main-header {
  background-color: #014c35;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.banner-section {
  padding-top: 60px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}
.logo {
  height: 50px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-menu li a {
  text-decoration: none;
  color: white;
}
.nav-menu li a:hover {
  color: yellow;
}
.nav-right a {
  margin-left: 15px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
}
.btn-outline {
  border: 2px solid white;
  color: white;
}
.btn-outline:hover {
  background-color: yellow;
  color: black;
}
.btn-filled {
  background-color: white;
  color: black;
}
.btn-filled:hover {
  background-color: yellow;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #004733;
    padding: 20px;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-right {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
