.mobile-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hamburger {
    font-size: 1.8rem;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem 1rem;
}

.menu-panel {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.menu-panel a {
    text-decoration: none;
    color: #007BFF;
    font-size: 1rem;
}

.menu-panel.open {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }

    .menu {
        display: flex;
    }
}