.navbar {
    display: flex;
    background-color: #333;
    padding: 0;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Manrope', Arial, sans-serif;
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: left;
    transition: background-color 0.3s ease;
    flex: none;
    box-sizing: border-box;
}

.navbar a:hover,
.navbar a.active {
    background-color: #555;
    color: white;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .navbar a {
        text-align: center;
        width: 100%;
        flex: none;
    }
}
