.logo-container {
    max-width: 100%;
}

.logo-container img {
    width: 100%;
    height: auto;
    min-width: 280px;
    max-width: 400px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    width: 100%;
    padding-bottom: 180px;
}

.mobile-menu-nav a {
    font-size: 1.25rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.mobile-menu-nav a:hover {
    text-decoration: underline;
}

/* .mobile-menu-close a {
    font-size: 1rem;
    text-decoration: underline;
    color: #666;
} */

.mobile-menu-logo img {
    max-width: 330px;
}

.menu-desktop {
    display: none;
}

.menu-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (min-width: 1280px) {
    .menu-desktop {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-mobile {
        display: none;
    }
}