.navbar {
    background-color: #fff !important;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo span {
    color: var(--text-dark);
}

.nav-logo img {
    height: 40px;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn svg {
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background-color: #fff;
    z-index: 1002;
    transition: right 0.3s ease;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
    padding: 0;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color, #007bff);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    position: relative;
}

.mobile-menu-header .nav-logo {
    color: var(--primary-color, #007bff);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a {
    color: var(--text-dark, #333);
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-color, #007bff);
    background-color: rgba(0, 123, 255, 0.05);
    padding-left: 25px;
}

body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .mobile-menu {
        width: 280px;
        right: -280px;
    }
    
    .nav-logo {
        font-size: 20px;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .navbar {
        padding: 10px 15px;
    }
    
    body {
        padding-top: 65px;
    }
}