.ps-wrapper-7e454b68 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.ps-item-7e454b68 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.ps-graphic-area-7e454b68 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    height: 70px; /* To ensure consistent height for the circle area */
}

.ps-circle-outer-7e454b68 {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background-color: #e2eedb;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2; /* Sit above the line */
}

.ps-circle-inner-7e454b68 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f2f8f2;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05); /* Slight inner shadow to match image depth */
}

.ps-number-7e454b68 {
    font-size: 16px;
    font-weight: 700;
    color: #1b2a20;
    line-height: 1;
}

.ps-line-7e454b68 {
    position: absolute;
    top: 50%;
    left: 50%;
    right: -50%;
    border-top: 2px dotted #dcdcdc;
    z-index: 1;
    transform: translateY(-50%);
}

.ps-text-area-7e454b68 {
    max-width: 200px; /* Keep text columns narrow like the image */
}

.ps-title-7e454b68 {
    font-size: 15px;
    font-weight: 700;
    color: #1b2a20;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.ps-desc-7e454b68 {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ps-text-area-7e454b68 {
        max-width: 150px;
    }
}

@media (max-width: 767px) {
    .ps-wrapper-7e454b68 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ps-item-7e454b68 {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 30px;
        padding: 0;
        width: 100%;
    }
    
    .ps-graphic-area-7e454b68 {
        width: auto;
        height: auto;
        margin-bottom: 0;
        margin-right: 20px;
        flex-direction: column;
    }
    
    .ps-line-7e454b68 {
        /* Change horizontal line to vertical line for mobile */
        top: 66px; /* Start below the circle */
        left: 50%;
        right: auto;
        bottom: -30px; /* Stretch to next item */
        border-top: none;
        border-left: 2px dotted #dcdcdc;
        transform: translateX(-50%);
        height: 100%;
    }
    
    /* Hide line on the very last item in mobile view */
    .ps-item-7e454b68:last-child .ps-line-7e454b68 {
        display: none;
    }
    
    .ps-text-area-7e454b68 {
        max-width: 100%;
        flex: 1;
        padding-top: 10px; /* Align text better with the circle */
    }
}