.cs-title {
    width: 100%;
    margin-bottom: 50rem;
}

.cs-title h5 {
    font-size: 50rem;
    line-height: 1.3;
}


.cs1 {
    background-color: #f5f5f5;
}

.a8-box {
    padding: 40rem;
}

.a8-box-icon {
    width: 100%;
}

.a8-box-icon i {
    color: var(--main-color);
    font-size: 80rem;
    float: right;
    margin-bottom: -20rem;
}

.a8Btn {
    color: #fff !important;
    background-color: var(--main-color) !important;
}

.a8-box:nth-child(2) i {
    color: var(--gold-color) !important;
    font-size: 90rem;
}
.a8-box:nth-child(2) .a8Btn {
    background-color: var(--gold-color) !important;
}



.cs2 {
    padding: 160rem 0;
    background: url(../images/cs2-bg.png) no-repeat;
    background-position: bottom right;
    background-size: cover;
}

.proc-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.proc-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    padding: 40rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.proc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e6f5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15rem;
}

.proc-icon-wrap i {
    color: var(--main-color);
    font-size: 22px;
}

.proc-badge {
    border-radius: 3px;
    background: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13rem;
    font-weight: 500;
    padding: 4px 6px;
    margin-bottom: 20rem;
}

.proc-title {
    font-size: 22rem;
    font-weight: 700;
    color: #111;
}

.proc-desc {
    color: #666;
    font-size: 16rem;
    line-height: 1.6;
    margin-top: 10px;
}

.proc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    padding-top: 1.5rem;
    flex-shrink: 0;
    color: #bbb;
    font-size: 18px;
}


@media (max-width: 991px) {
    .proc-wrap {
        position: relative;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .proc-arrow {
        position: absolute;
        width: 50rem;
        height: 50rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #fff;
        border: 1px solid #ddd;
    }
    .proc-arrow:nth-child(2) {
        top: 21%; left: 50%;
        transform: translate(-50%, 0);
    }
    .proc-arrow:nth-child(4) {
        top: 71%; left: 50%;
        transform: translate(-50%, 0);
    }
    .proc-arrow:nth-child(6) {
        display: none;
    }
}


@media (max-width: 550px) {
    .cs-title {
        text-align: center;
    }
    
    .proc-badge {
        font-size: 16rem;
    }

    .proc-title {
        font-size: 28rem;
    }

    .proc-desc {
        font-size: 19rem;
    }
}