    .split-mappa {
        display: flex;
        width: 100%;
        height: 400px;
    }
    .split-left {
        width: 50%;
        background: #9c0034;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 3rem 4rem;
    }
    .split-title {
        color: #fff;
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 4rem;
        line-height: 1.2;
    }
    .split-cta {
        display: inline-block;
        padding: 0.8rem 2rem;
        border: 2px solid #fff;
        color: #fff !important;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 0.9rem;
        transition: background 0.3s, color 0.3s;
    }
    .split-cta:hover {
        background: #fff;
        color: #9c0034 !important;
    }
    .split-right {
        width: 50%;
        height: 100%;
    }
    @media screen and (max-width: 440px) {
        .split-mappa { flex-direction: column; height: auto; }

        .split-left {
            width: calc(100% - 4rem);
            padding: 2rem;
        }
        
        .split-right { width: 100%; height: 300px; }
    }