.navbar-container {
    width: 100%;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 50px;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

.nav-link {
    color: #000;
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    line-height: 28px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #93D309;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 80;
}

.overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px;
        gap: 0;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        gap: 20px;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 90;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .nav-link {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 16px;
    }
    
    .nav-links {
        width: 80%;
        padding: 70px 20px 20px;
    }
    
    .nav-link {
        font-size: 15px;
        line-height: 22px;
    }
}