:root {
    --bg-color: #030712;
    --text-color: #ffffff;
    --text-secondary: #9ca3af;
    --accent-blue: #0066cc;
    --accent-gradient: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    --item-bg-hover: rgba(255, 255, 255, 0.05)
}

.service-container {
    background-color: #000;
    color: var(--text-color)
}

.service-why-choose {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto
}

.service-section-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: center
}

.service-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: stretch
}

.services-paragraph {
    margin-bottom: 50px;
    font-weight: 500;
    font-size: 18px;
    text-align: center
}

.service-highlights-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-left: 1px solid rgb(255 255 255 / .1)
}

.service-highlight-item {
    padding: 20px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

    .service-highlight-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background-color: #fff0;
        transition: background-color 0.3s ease
    }

    .service-highlight-item:hover:not(.active) {
        background-color: var(--item-bg-hover)
    }

    .service-highlight-item.active {
        background: linear-gradient(97deg,#0f7a95 6.39%,#05262f 105.67%);
        box-shadow: 0 4px 20px rgb(11 165 233 / .3)
    }

.pb-migration {
    border: 1px solid rgb(255 255 255 / .1)
}

.pb-highlight {
    border-left: none
}

.service-highlight-header {
    display: flex;
    align-items: center;
    gap: 16px
}

.service-highlight-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / .1);
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0
}

.service-highlight-item.active .service-highlight-number {
    background-color: #fff;
    color: #0284c7
}

.service-highlight-title {
    font-size: 18px !important;
    font-weight: 500;
    color: var(--text-color)
}

.service-highlight-description {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease
}

.service-highlight-item.active .service-highlight-description {
    opacity: 1;
    height: auto;
    margin-top: 12px
}

.service-image-display {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center
}

.service-content-box {
    background: linear-gradient(97deg,#0f7a95 6.39%,#05262f 105.67%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #fff;
    height: 500px;
    display: flex;
    flex-direction: column
}

.slide-right-slow {
    animation: fadeInRight 1s ease-in-out
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(80px)
    }

    to {
        opacity: 1
    }
}

.help-text {
    margin-top: 15px;
    font-weight: 500;
    font-size: 18px
}

.help-list {
    padding: 0;
    margin: 15px 0 15px 0
}

    .help-list li {
        display: block;
        width: 100%;
        margin-bottom: 8px;
        padding-left: 22px;
        position: relative;
        font-size: 18px
    }

        .help-list li::before {
            content: "\2714";
            position: absolute;
            left: 0;
            color: #fff;
            font-weight: 700
        }

.roi-text {
    margin-top: 10px;
    font-weight: 500;
    font-size: 18px
}

@media (max-width:992px) {
    .service-content-wrapper {
        flex-direction: column
    }

    .service-image-display {
        width: 100%;
        margin-top: 40px
    }
}

@media (max-width:768px) {
    .service-container {
        padding: 25px
    }

    .service-content-box {
        height: 530px;
        padding: 32px
    }

    .service-content-wrapper {
        display: grid;
        flex-direction: column;
        gap: 25px
    }

    .service-section-title {
        font-size: 22px !important
    }

    .service-highlights-list {
        flex-direction: row;
        overflow-x: auto
    }

    .service-highlight-item {
        min-width: 220px;
        padding: 10px 10px;
        flex-shrink: 0
    }

    .service-highlights-list::-webkit-scrollbar {
        height: 6px
    }

    .service-highlights-list::-webkit-scrollbar-track {
        background: #030e11;
        border-radius: 5px
    }

    .service-highlights-list::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg,#0f7a95,#00bfff);
        border-radius: 10px
    }

    .service-highlight-number {
        width: 25px;
        height: 25px;
        font-size: 14px
    }

    .service-image-display {
        margin-top: 10px
    }

    .service-highlight-title {
        font-size: 14px !important
    }

    .services-paragraph {
        font-size: 14px !important;
        margin-bottom: 30px
    }

    .help-text {
        font-size: 14px !important
    }

    .roi-text {
        font-size: 14px !important
    }

    .help-list li {
        font-size: 14px !important
    }
}

@media (min-width:1024px) and (max-width:1440px) {
    .service-why-choose {
        padding: 0 30px
    }

    .service-section-title {
        font-size: 32px
    }

    .service-content-wrapper {
        gap: 40px
    }

    .service-content-box {
        height: 450px;
        padding: 30px
    }

    .service-highlight-item {
        padding: 18px 20px
    }

    .service-highlight-title {
        font-size: 16px
    }

    .help-text, .roi-text, .help-list li {
        font-size: 16px
    }
}

@media only screen and (min-width:810px) and (max-width:834px) {
    .service-why-choose {
        padding: 0 25px
    }

    .service-section-title {
        font-size: 28px
    }

    .service-content-wrapper {
        flex-direction: row;
        gap: 35px
    }

    .service-content-box {
        height: auto;
        min-height: 450px;
        padding: 30px
    }

    .service-highlight-item {
        padding: 16px 18px
    }

    .service-highlight-title {
        font-size: 16px
    }

    .help-text, .roi-text, .help-list li {
        font-size: 16px
    }
}
