nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.logo img {
    height: 40px;
}

nav .audio {
    display: none;
    order: 3;
    width: 100%;
    margin-top: 10px;
}

ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

ul li {
    flex: 1 50%;
    text-align: center;
    margin: 5px 0;
}

#language-selector {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#language-selector button {
    margin: 0 5px;
}


  .burger {
      display: block !important;
      position: relative;
      z-index: 1001;
  }

.nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--main-color);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 5;
}

.nav-links.active {
    max-height: 400px;
}

.nav-links li {
    width: 100%;
    text-align: center;
}

.nav-links li a {
    display: block;
    padding: 10px 0;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

header {
    height: auto;
    margin-bottom: 30px;
    margin-top: 140px;
}

footer{
    display: flex;
    flex-direction: column;
}