.overview_wrapper_1_main {
    width: 100%;
    margin: auto;
    background-color: black;
}

.overview_wrapper_1_main_child {
    width: 100%;
    max-width: 1600px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    margin: auto;
    flex-wrap: wrap;
}

.overview_warpper_left,
.overview_warpper_right {
    width: 50%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10%;
}

.overview_warpper_right_image {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin: 1% auto;
}

.overview_warpper_left .heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    text-align: left;
}


.overview_warpper_left .paragraph {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
}


.overview_warpper_left .heading,
.overview_warpper_left .paragraph {
    color: var(--secondary-color);
}

/* Small mobile screens (max-width 576px) */
@media (max-width: 576px) {
    .overview_wrapper_1_main {
        padding: 1rem;
    }

    .overview_wrapper_1_main_child {
        padding: 0;
        flex-direction: column;
    }

    .overview_warpper_left,
    .overview_warpper_right {
        width: 100%;
        padding: 0;
        gap: 5%;
        align-items: center;
    }

    .overview_warpper_right_image {
        width: 100%;
        max-width: none;
        height: auto;
        margin: 1rem 0;
    }

    .overview_warpper_left .heading {
        font-size: 26px;
        line-height: 40px;
        text-align: center;
        margin: 10px 0;
    }

    .overview_warpper_left .paragraph {
        font-size: 12px;
        text-align: center;
        margin: 5px 0;
    }
}