    .mission-vission-main {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .mission-vission-main .row {
        margin-bottom: 70px;
    }

    .mission-vission-main .row:last-child {
        margin-bottom: 0;
    }

    .image-section {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        transition: 0.4s ease;
    }

    .image-section:hover img {
        transform: scale(1.05);
    }

    .content-section {
        padding: 20px 30px;
    }

    .heading-sec {
        margin-bottom: 20px;
        position: relative;
    }

    .heading-text {
        font-size: 38px;
        font-weight: 700;
        color: #1d3557;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .heading-text::after {
        content: "";
        width: 70px;
        height: 4px;
        background: #e63946;
        position: absolute;
        left: 0;
        bottom: -10px;
        border-radius: 10px;
    }

    .content-text {
        font-size: 17px;
        line-height: 1.9;
        color: #555;
        text-align: justify;
    }

    @media (max-width: 991px) {
        .content-section {
            padding: 10px 0;
        }

        .heading-text {
            font-size: 30px;
        }
    }

    @media (max-width: 767px) {
        .mission-vission-main {
            padding: 50px 0;
        }

        .heading-text {
            font-size: 26px;
        }

        .content-text {
            font-size: 15px;
            line-height: 1.8;
        }

        .mission-vission-main .row {
            margin-bottom: 50px;
        }
    }