.main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: linear-gradient(180deg,
            #ffffff,
            #fbfcfe);
    border: 1px solid #e8eef6;
    border-radius: 22px;
    padding: 42px;
    box-shadow:
        0 18px 45px rgba(15, 23, 42, .06);
    max-width: 1200px;
    margin: 50px auto;
    transition: .3s;
}

.main-wrapper:hover {
    box-shadow:
        0 24px 60px rgba(15, 23, 42, .10);
}

.step-list {
    display: flex;
    flex-direction: column;
}

.step-item {
    background: #f6f8fc;
    border: 1px solid #e5edf7;
    padding: 16px 26px;
    margin: 10px 0;
    border-radius: 14px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: #42526b;
    cursor: pointer;
    transition: all .28s ease;
    box-shadow:
        0 3px 10px rgba(15, 23, 42, .04);
}

.step-item:hover {
    background: #ffffff;
    border-color: #1d4d8b;
    color: #1d4d8b;
    transform: translateX(3px);
    box-shadow:
        0 10px 24px rgba(15, 23, 42, .08);
}

.step-item.current-step {
    color: #fff;
    background:
        linear-gradient(135deg,
            #10233f,
            #214f86);
    border-left: 4px solid var(--oliver-gold);
    box-shadow:
        0 8px 18px rgba(16, 35, 63, .14);
}

.info-box {
    max-width: 400px;
    margin-left: 20px;
}

.info-box h2 {
    font-size: 2.3rem;
    color: black;
    margin-bottom: 10px;
    font-family: Roboto, sans-serif;
}

.info-box p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: black;
    font-family: Roboto, sans-serif;
    text-align: justify;
}

.info-box ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.info-box ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.cta-btn {
    background-color: #3467ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #2a55c9;
}

.image-holder img {
    border-radius: 10px;
    max-width: 300px;
}

/*====================================
SERVICE SUITE MOBILE
====================================*/
@media (max-width:991px) {
    .main-wrapper {
        flex-direction: column;
        gap: 26px;
        padding: 24px;
    }

    .step-list {
        width: 100%;
    }

    .step-item {
        width: 100%;
        margin: 6px 0;
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 12px;
        transform: none !important;
    }

    .step-item:hover {
        transform: none;
    }

    .info-box {
        max-width: 100%;
        margin: 0;
        text-align: center;
    }

    .info-box h2 {
        font-size: 30px;
    }

    .info-box p {
        text-align: center;
    }

    .image-holder {
        width: 100%;
        text-align: center;
    }

    .image-holder img {
        max-width: 220px;
    }
}