/* Default styling for the logo */
.navbar-brand img {
    height: 50px;
}

/* Adjust the logo size for mobile screens */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px; /* Smaller height for mobile */
    }
}