body {
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

.highlights {
    padding-bottom: 200px;
    padding-top: 100px;
    background: #f8fafc;
}

.container {
    width: 100%;
    max-width: 1280px;
    padding: 0 24px;
}

.highlight-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

    .highlight-item:last-child {
        margin-bottom: 0;
    }


.highlight-image {
    position: relative;
}

.highlight-image-bg {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

    .highlight-image-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        z-index: 1;
    }

.highlight-image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 80%;
}

    .highlight-image-content i {
        font-size: 80px;
        margin-bottom: 20px;
        color: #4361ee;
    }

    .highlight-image-content h4 {
        font-size: 24px;
        color: #22223b;
        margin-bottom: 10px;
    }

.highlight-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #22223b;
    line-height: 1.3;
}

.highlight-content p {
    color: #8d99ae;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.7;
}

.highlight-list {
    list-style: none;
}

    .highlight-list li {
        margin-bottom: 16px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .highlight-list i {
        margin-top: 4px;
        font-size: 18px;
    }

.fas {
    background-color: #2563eb;
    width: 10px;
    height: 10px;
    font-style: normal;
    border-radius: 50%;
    position: relative;
    top: 5px;
}

.step {
    /* box-shadow: 0px 0px 1px 1px red; */
    width: 33.33%;
    height: 168px;
    float: left;
    text-align: center;
    margin-top: 16px;
}

    .step > div:first-child {
        box-shadow: 0px 0px 1px 2px rgb(59 130 246 / 47%);
        width: 66px;
        height: 66px;
        border-radius: 13px;
        line-height: 66px;
        font-size: 30px;
        font-weight: 600;
        color: rgb(37 99 235);
        text-align: center;
        margin: 0 auto;
    }

    .step > div:hover {
        background-color: rgb(59 130 246);
        box-shadow: 0px 0px 1px 2px rgb(59 130 246);
        color: #ffffff;
    }

    .step > p {
        color: #7f7f7f;
        font-size: 14px;
    }

    .step > h3 {
        color: #525252;
        font-size: 18px;
    }
