    .section4 {
        padding-left: var(--container);
        padding-right: var(--container);
    }

    .Box4 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .img4 {
        width: 190px;
        display: flex;
        align-items: center;
    }

    .img4 img {
        width: 100%;
    }

    .line4 {
        display: block;
        width: 1px;
        background: #E2E2E2;
    }

    .text4 {
        width: calc(100% - 190px - 1px - 200px);
        font-size: 16px;
        line-height: 2;
        opacity: 0.9;
    }

    .text4 b {
        font-weight: 700;
        font-size: 28px;
        color: var(--color);
        opacity: 0.9;
    }


    @media (max-width: 1200px) {
        .text4 {
            width: calc(100% - 190px - 1px - 100px);
        }
    }

    @media (max-width: 720px) {
        .Box4 {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .line4 {
            display: block;
            width: 100%;
            height: 1px;
            margin: 30px 0;
        }

        .text4 {
            width: 100%;
        }
    }

    @media (max-width: 460px) {
        .img4 {
            width: 150px;
        }

        .text4 b {
            font-size: 24px;
        }
    }

    @media (max-width: 380px) {}