.sec1.introduction .wh1200.items1 {
    .item {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        img {
            object-fit: cover;
            margin: 40px auto 0;
        }
    }
}

.sec2.features .wh1200.items1 {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-bottom: 48px;

    .item {
        flex: 1;
        display: flex;
        flex-direction: column;
        background-color: white;
        height: 300px;
        color: white;
        border-radius: 16px;
        box-shadow: 0 4px 9px 3px rgba(0, 75, 225, 0.1);

        .item-header {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 16px;
            padding: 40px 0 24px 0;

            .item-img {
                width: 64px;
                height: 64px;
                flex-shrink: 0;
            }

            .item-title {
                font-size: 20px;
                line-height: 1.4;
                color: #004BE1;
            }
        }

        .item-content {
            padding: 0 32px;

            .item-description {
                color: #333;
                font-size: 16px;
                line-height: 1.4;
                text-align: center;
            }
        }
    }
}

.sec3.advantages .wh1200.items1 {
    .item {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;

        img {
            object-fit: cover;
            margin: 40px auto 0;
        }
    }
}

.sec4.scenes .wh1200.items1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;

    .item {
        display: flex;
        flex-direction: row;
        align-items: start;
        height: 152px;
        gap: 12px;
        border-radius: 16px;
        box-shadow: 0 4px 9px 3px rgba(0, 75, 225, 0.1);
        padding: 32px 0 32px 32px;

        .item-img {
            flex-shrink: 0;

            img {
                object-fit: cover;
            }
        }

        .item-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
            align-items: flex-start;
            justify-content: center;

            .item-title {
                color: #004BE1;
                font-size: 22px;
                line-height: 1.4;
                margin-bottom: 6px;
            }

            .item-sub-title {
                color: #333333;
                font-size: 18px;
                line-height: 1.4;
            }

            .item-description {
                color: #333333;
                font-size: 16px;
                line-height: 1.4;
                padding-right: 10px;
            }
        }
    }
}