.mh-091961bc-wrapper {
    display: flex;
    align-items: stretch; /* So left and right match height */
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.mh-091961bc-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.mh-091961bc-company-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mh-091961bc-headlines {
    margin-bottom: 20px;
    line-height: 1.1;
}

.mh-091961bc-main-headline {
    font-size: 54px;
    font-weight: 800;
    margin: 0;
}

.mh-091961bc-secondary-headline {
    font-size: 54px;
    font-weight: 800;
    margin: 0;
}

.mh-091961bc-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 800px;
}

.mh-091961bc-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 40px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    border-radius: 0;
}

.mh-091961bc-metrics {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.mh-091961bc-metric-item {
    display: flex;
    flex-direction: column;
    border-right: 1px solid;
    padding-right: 30px;
}

.mh-091961bc-metric-item:last-child {
    border-right: none;
    padding-right: 0;
}

.mh-091961bc-metric-val {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.mh-091961bc-metric-lbl {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.mh-091961bc-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

.mh-091961bc-img-element {
    display: block;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .mh-091961bc-main-headline,
    .mh-091961bc-secondary-headline {
        font-size: 42px;
    }
    
    .mh-091961bc-metric-val {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .mh-091961bc-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .mh-091961bc-left {
        width: 100% !important;
        text-align: center;
        align-items: center;
        padding-bottom: 20px !important;
    }

    .mh-091961bc-btn {
        align-self: center;
    }

    .mh-091961bc-metrics {
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    .mh-091961bc-metric-item {
        border-right: none;
        padding-right: 0;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .mh-091961bc-main-headline,
    .mh-091961bc-secondary-headline {
        font-size: 36px;
    }

    .mh-091961bc-right {
        width: 100% !important;
        align-items: flex-end;
        justify-content: center;
    }
    
    .mh-091961bc-img-element {
        width: 100% !important;
        max-width: 100% !important;
    }
}