.topnav, .footernav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topnav ul, .footernav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.nav-left li, .ftnavleft li {
    float: left;
}

.nav-right li, .ftnavright li{
    float: right;
}

.topnav li a, .footernav li a {
    display: flex;
    color: #dceaff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.topnav li a:hover, .footernav li a:hover  {
    background-color: #111;
    color: white;
}

/* Hide toggle on desktop */
.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  color: #0d3269;
}

/* Mobile styles */
@media screen and (max-width: 600px) {
  .topnav ul {
    display: none; /* Hide menu initially */
    flex-direction: column;
    width: 100%;
    background-color: #0d3269;
  }

  .topnav ul.active {
    display: flex; /* Show when toggled */
  }

  .nav-toggle {
    display: block; /* Show hamburger */
    position: absolute;
    top: 10px;
    right: 15px;
  }

}



