.ps-934-container {
    position: relative;
    padding: 20px 0;
    font-family: inherit;
    background-color: #ffffff;
}

.ps-934-line-wrapper {
    position: absolute;
    left: 45px; /* Centers under the 90px badge */
    top: 40px;
    bottom: 40px;
    width: 2px;
    z-index: 1;
}

.ps-934-line {
    width: 100%;
    height: 100%;
    background-color: #E2E8F0;
}

.ps-934-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.ps-934-step-wrapper {
    display: flex;
    flex-direction: column;
}

.ps-934-step {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.ps-934-step-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 24px;
}

.ps-934-step-number-wrap {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.ps-934-step-number {
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    color: #2E6EA2;
    border: 2px solid #2E6EA2;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.ps-934-step:hover .ps-934-step-number {
    background-color: #2E6EA2;
    color: #ffffff;
}

.ps-934-step-content {
    padding-top: 10px;
}

.ps-934-step-title {
    margin: 0 0 16px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.ps-934-step-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.ps-934-step-right {
    flex: 1;
    min-width: 300px;
    padding-top: 10px;
}

.ps-934-features-box {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.ps-934-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ps-934-feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.ps-934-feature-icon svg {
    stroke: currentColor;
    fill: none;
    color: #2E6EA2;
}

.ps-934-feature-text {
    font-size: 15px;
    line-height: 1.5;
}

.ps-934-divider {
    border-top-style: solid;
    border-top-color: #E2E8F0;
    border-top-width: 1px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .ps-934-step {
        gap: 20px;
    }
    
    .ps-934-step-left {
        min-width: 100%;
        gap: 16px;
    }

    .ps-934-step-number-wrap {
        width: 60px; /* Fixed width to center the line */
    }

    .ps-934-step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 12px;
    }
    
    .ps-934-line-wrapper {
        left: 30px; /* Centers under the 60px badge */
        top: 30px;
        bottom: 30px;
    }

    /* Hide the features box on mobile */
    .ps-934-step-right {
        display: none;
    }
}