body {
    margin: 0;
    padding-top: 155px; 
    font-family: 'Montserrat', sans-serif;
}

.top-bar {
    background-color: #0b3d00; 
    height: 60px;
}

.top-nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    margin-left: 20px;
    letter-spacing: 0.5px;
}

.middle-bar {
    background-color: white;
    height: 120px; 
    border-bottom: 65px solid #115a01; 
    position: relative;
}


.logo-wrapper {
    position: absolute;
    top: -32px; 
    left: 0;
    padding: 20px;
    z-index: 1000;
    
    
}

.logo-wrapper img {
    height: 180px; 
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .logo-wrapper img {
        height: 80px;
    }
}

@media (max-width: 991px) {
    .logo-wrapper {
        position: relative !important;
        top: 0 !important;
        text-align: center;
    }
}

.nav-bottom-aligned {
    position: absolute;
    bottom: -40px; 
    left: 170px;
    width: auto;
}

@media (max-width: 991px) {
    .nav-bottom-aligned {
        position: static !important;
        width: 100%;
        background-color: #115a01;
    }
}

.navbar-nav {
    height: 40px;
    align-items: center;
}

.nav-link {
    color: white !important; 
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 0 15px !important;
    height: 40px;
    display: flex;
    align-items: center;
    border-right: 2px solid rgba(255, 255, 255, 0.3); 
    transition: 0.3s;
}

.nav-item:last-child .nav-link {
    border-right: none;
}

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

.active-item {
    color: #ffd700 !important;
}