.banner-mdm {
    background-image: url('/static/assets/images/mdm/mdm_banner.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 472px;
    display: flex;
    align-items: center;
    color: #fff;
}

.mdm-content-wrapper {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.mdm-content-left {
    text-align: center;
    flex-basis: 50%;
    padding-right: 20px;
}

.mdm-title {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.mdm-content-left p {
    font-size: 30px;
    color: #ffffff;
    font-weight: 400;
    display: block;
    line-height: 1.2;
}

.btn-mdm {
    background-image: radial-gradient(#0055b0, #001d60);
    color: #ffffff;
    width: 235px;
    height: 65px;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 500;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
    align-items: center;
    margin-top: 30px;
}

.btn-mdm:hover {
    background-color: #5a5a5a;
    border-color: #5a5a5a;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .banner-mdm {
        background-position: center;
    }

    .mdm-content-wrapper {
        flex-direction: column;
        text-align: center;
        width: 95%;
    }

    .mdm-content-left {
        flex-basis: auto;
        margin-bottom: 30px;
        padding-right: 0;
    }

    .mdm-title {
        font-size: 2.2rem;
    }

    .mdm-title span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .banner-mdm {
        padding: 40px 0;
        min-height: 250px;
    }

    .mdm-title {
        font-size: 30px;
    }

    .mdm-content-left p {
        font-size: 20px;
        padding: 0px 20px;
    }

    .btn-mdm {
        padding-top: 18px;
        font-size: 20px;
        font-weight: 300;
    }
}
