body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #fff;
}
.final-nav {
  background-color: #002b45;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  flex-wrap: nowrap;
  padding: 0 40px;
}
.nav-left, .nav-right {
  display: flex;
  flex-wrap: wrap;
  width: 250px;
  gap: 5px 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-left li, .nav-right li {
  width: calc(50% - 5px);
}
.nav-left li a, .nav-right li a {
  color: white;
  text-decoration: none;
  padding: 6px 4px;
  font-size: 13px;
  display: block;
  text-align: center;
  background-color: transparent;
  transition: background 0.3s;
}
.nav-left li a:hover, .nav-right li a:hover {
  background-color: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 30px;
}
.nav-logo {
  height: 200px;
  width: auto;
}

/* Slideshow */
.slideshow {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide {
  display: none;
  max-height: 700px;
  max-width: 100%;
  width: auto;
  height: auto;
}
.slide.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .final-nav {
    flex-direction: column;
    height: auto;
  }
  .nav-left, .nav-right {
    width: 100%;
    justify-content: center;
  }
  .logo-link {
    margin: 10px auto;
  }
  .nav-logo {
    height: 150px;
  }
}
