.ps-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.ps-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.ps-connector-line {
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    transform: translateY(-50%);
    z-index: 1;
}

.ps-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.ps-circle-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
}

.ps-circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ps-title {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.ps-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .ps-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    .ps-connector-line {
        left: 25px;
        right: auto;
        top: 25px;
        bottom: 25px;
        width: 2px;
        height: auto !important;
        transform: none;
    }
    .ps-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0;
    }
    .ps-circle-wrap {
        width: auto;
        margin-bottom: 0;
        margin-right: 20px;
    }
}
