/* Logo Styles */
.logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 240px;
}

.logo img {
    width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .logo {
        width: 160px;
        height: 80px;
        top: 10px;
        left: 10px;
    }
}
