a {
  text-decoration: none;
  color: #007BFF;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

footer {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  color: #007BFF;
}

.brand {
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.brand img {
  height: 60px; /* Adjust this value to fit your needs */
  margin-right: 5px;
}

.site-header {
  position: relative;
  z-index: 1000;
  background-color: white;
}

.site-header__wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media (min-width: 600px) {
    .site-header__wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 0;
      padding-bottom: 0; } }
@media (min-width: 600px) {
  .nav__wrapper {
    display: flex; } }

@media (max-width: 599px) {
  .nav__wrapper {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
    .nav__wrapper.active {
      visibility: visible;
      opacity: 1;
      transform: translateY(0); } }

@media (max-width: 767px) {
  .nav__wrapper {
    display: none;
  }
  
  .nav__wrapper.active {
    display: block;
  }
  
  .nav__item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }
}

.nav__item a, 
.nav__item span {
  display: block;
  padding: 1.5rem 1rem;
  color: #007BFF;
}

.nav__toggle {
  display: none; }
  @media (max-width: 599px) {
    .nav__toggle {
      display: block;
      position: absolute;
      right: 1rem;
      top: 1rem; } }