    /* Section4 */
    .section4 {
        display: block;
    }

    .Box4 {
        margin-top: 60px;
        position: relative;
        width: 100%;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .lt4 {
        width: calc(50% - 90px);
    }

    .lt4 .desc4 {
        color: #666;
        font-size: 16px;
        line-height: 1.5;
    }

    .lt4 span {
        margin-top: 15px;
        margin-bottom: 60px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px 20px;
    }

    .lt4 span p {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #000;
        font-size: 16px;
        padding: 20px 0;
        border-bottom: 2px solid #E6E7E8;
    }

    .lt4 span p:hover {
        color: var(--color);
        border-bottom: 2px solid var(--color);
    }

    .lt4 a {
        width: 180px;
        height: 60px;
        border-radius: 50px;
        background: linear-gradient(90deg, #FCF48E 0%, #8E3A0A 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        text-align: center;
        font-size: 20px;
    }

    .rt4 {
        width: 50%;
        overflow: hidden;
        border-radius: 26px;
    }

    .rt4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;

    }

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

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

    @media (max-width: 1200px) {
        .lt4 {
            width: calc(50% - 30px);
        }
    }

    @media (max-width: 900px) {
        .Box4 {
            grid-gap: 30px;
        }

        .lt4 {
            width: 100%;
        }

        .lt4 a {
            width: 120px;
            height: 30px;
            font-size: 14px;
        }

        .lt4 span {
            margin: 15px 0;
        }

        .rt4 {
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        .Box4 {
            margin-top: 30px;
        }

        .lt4 span {
            margin: 15px 0;
            grid-template-columns: repeat(1, 1fr);
        }

        .lt4 span p {
            padding-top: 0;
            padding-bottom: 10px;
            font-size: 14px;
        }

        .rt4 {
            border-radius: 16px;
        }

    }

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