.flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 10vw;
    padding-right: 10vw;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
}

.text-section,
.image-section {
    flex: 1;
    box-sizing: border-box;
}

.enhancing-text {
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    margin-bottom: 8px;
    color: #646970;
}

.blog-text {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.blog-text-element {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-heading,
.solve-heading {
    font-family: Noto Sans;
    font-size: 48.83px;
    font-weight: 700;
    line-height: 61.04px;
    text-align: left;
    color: #21272D;
    margin: 0;
}

.image-section {
    text-align: end;
    height: 100%;
}

.responsive-img {
    width: 100%;
    height: auto;
    height: 100%;
    border-bottom-right-radius: 100px;
    border-top-left-radius: 100px;
    object-fit: cover;
}

@media only screen and (max-width: 1025px) {
    .flex-container {
        flex-direction: column;
    }

    .text-section {
        margin-bottom: 40px;
    }

    .blog-text {
        gap: 40px;
    }

    problem-heading,
    .solve-heading {
        font-size: 39.06px !important;
        line-height: 48.83px !important;
    }

    .problem-description,
    .solve-description {
        font-family: Noto Sans;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        color: #394049;
        margin: 0;
    }

    .responsive-img {
        max-width: 100% !important;
    }
}

@media only screen and (min-width: 1025px) {
    .pe-120px {
        padding-right: 120px;
    }
}

@media only screen and (max-width: 567px) {
    .flex-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .text-section {
        margin-bottom: 32px;
    }

    .enhancing-text {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 4px;
    }

    .blog-text {
        gap: 24px;
    }

    .problem-heading,
    .solve-heading {
        font-size: 31.25px !important;
        line-height: 39.06px !important;
    }

    .problem-description,
    .solve-description {
        font-size: 14px;
        line-height: 21px;
    }
}