.mv-benefits {
    --mv-card-bg: #edf3fb;
    --mv-card-border: #99b8df;
    --mv-footer-before-image: none;
    --mv-header-image-width: 200px;
    color: #0f478d;
    width: 100%;
}

.mv-benefits-inner {
    max-width: 1480px; 
    margin: 0 auto;
    text-align: center;
}

.mv-benefits-header-image {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.mv-benefits-header-image img {
    max-width: var(--mv-header-image-width);
    width: 100%;
    height: auto;
}

.mv-benefits-headline {
    color: #0f478d;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.2;
    margin: 0;
}

.mv-benefits-subline {
    color: #1c5ca5;
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.45;
    max-width: 760px;
    margin: 20px auto 50px;
}

.mv-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 44px;
}

.mv-benefits-card {
    background-color: var(--mv-card-bg);
    border: 1px solid var(--mv-card-border);
    border-radius: 14px;
    text-align: left;
    padding: 28px 80px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 30px;
    height: 320px;;
}

.mv-benefits-card-image img {
    width: var(--mv-card-image-width, 92px);
    max-width: 100%;
    height: auto;
    display: block;
}

.mv-benefits-card-subline {
    margin: 0;
    color: #0f478d;
    font-size: 24px;
    line-height: 1.2;
}

.mv-benefits-card-headline {
    margin: 12px 0 0;
    color: #1d589c;
    font-size: 17px;
    line-height: 1.45;
}

.mv-benefits-footer-headline {
    margin: 10px auto 0;
    color: #0f478d;
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.mv-benefits-footer-headline.has-before-graphic::before {
    content: '';
    width: 72px;
    height: 38px;
    background-image: var(--mv-footer-before-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .mv-benefits-grid {
        grid-template-columns: 1fr;
    }

    .mv-benefits-card {
        grid-template-columns: auto 1fr;
        padding: 20px;
    }

    .mv-benefits-card {
    background-color: var(--mv-card-bg);
    border: 1px solid var(--mv-card-border);
    border-radius: 14px;
    text-align: left;
    padding: 28px 80px;
    display: flex;
  
    align-items: center;
  
    height: auto;
    text-align: center;
    flex-direction: column;
    }

    .mv-benefits-card-image img {
        width: var(--mv-card-image-width-mobile, 72px);
        max-width: 100%;
    }

    .mv-benefits-card-subline {
        font-size: 20px;
    }

    .mv-benefits-card-headline {
        font-size: 16px;
    }
.mv-benefits-footer-headline{
    font-size: 18px;
    text-align: left;
}
    .mv-benefits-footer-headline.has-before-graphic::before {
        width: 56px;
        height: 30px;
    }
}

