/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px; /* Increased from 50px to match H1 size */
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

/* Hide text logo on smaller screens but keep the image */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 55px; /* Adjusted proportionally */
    }
}

@media (max-width: 480px) {
    .logo h1 {
        display: none;
    }
    
    .logo img {
        height: 45px; /* Adjusted proportionally */
    }
}