.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 150px; /* Increased size further */
    width: auto;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Adjust logo size for smaller screens */
@media (max-width: 768px) {
    .logo-img {
        height: 90px; /* Increased mobile size */
    }
}

/* Footer logo styles */
.footer-logo .logo-img {
    height: 130px;
    width: auto;
    margin-bottom: 1rem;
}
