.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-text {
    color: #00CED1;
    font-weight: bold;
    font-size: 24px;
    margin-left: 5px;
}

.nav-item {
    margin-right: 15px;
}

.navbar-border {
    border-bottom: 2px solid #00CED1;
    padding-bottom: 0;
}

.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icons a {
    margin-left: 20px;
    color: #000;
    font-size: 18px;
}

.house-icon {
    width: 30px;
    height: 30px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .navbar-collapse {
        margin-top: 15px;
    }
    
    .nav-icons {
        margin-top: 15px;
        justify-content: center;
    }
    
    .navbar-nav {
        text-align: center;
    }
}