@media (max-width: 1023px) {
    .navigation {
        position: fixed;
        top: 0;
        left: -350px;
        width: 350px;
        height: 100vh;
        z-index: 1010;
        background-color: #ffffff;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        transition: left 0.3s ease-in-out;
    }

    .navigation.active {
        left: 0;
    }

    .off-canvas-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .off-canvas-overlay.active {
        display: block;
        opacity: 1;
    }
}
