/* Add custom styles for the logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

/* Improve logo display on small screens */
@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    nav {
        margin-top: 1rem;
    }
}
