@media (max-width: 768px) {
    .navbar-logo {
        display: inline-block; /* This will make the image display inline */
        width: auto; /* Reset the width to its natural size */
        max-width: 100%; /* Ensure it doesn't overflow */
    }

    .navbar-nav {
        display: inline-block; /* This will make the menu display inline */
    }
}
