.ps-container-bddf8f4c {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}

.ps-step-bddf8f4c {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: 0;
}

/* Staggering the steps */
.ps-step-bddf8f4c:nth-child(2) {
    margin-left: 15%;
}
.ps-step-bddf8f4c:nth-child(3) {
    margin-left: 30%;
}

.ps-card-bddf8f4c {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: -8px -8px 0px 0px #a4d233;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.ps-icon-wrap-bddf8f4c {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #1a3b32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a4d233;
    font-size: 24px;
    margin-right: 20px;
}

.ps-icon-wrap-bddf8f4c svg {
    width: 24px;
    height: 24px;
    fill: #a4d233;
}

.ps-content-bddf8f4c {
    flex-grow: 1;
    z-index: 2;
}

.ps-title-bddf8f4c {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 800;
    color: #000;
}

.ps-desc-bddf8f4c {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.ps-number-bddf8f4c {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 64px;
    font-weight: 900;
    color: #e5f2c9;
    opacity: 0.6;
    z-index: 1;
}

.ps-connector-bddf8f4c {
    position: absolute;
    bottom: -40px;
    left: 20px;
    width: 100px;
    height: 60px;
    z-index: 1;
}

.ps-line-dot-bddf8f4c {
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #a4d233;
    border-radius: 50%;
}

.ps-line-bddf8f4c {
    position: absolute;
    top: 15px;
    left: 4px;
    width: 50px;
    height: 45px;
    border-left: 2px solid #a4d233;
    border-bottom: 2px solid #a4d233;
    border-bottom-left-radius: 10px;
}

@media (max-width: 767px) {
    .ps-step-bddf8f4c:nth-child(n) {
        margin-left: 0;
    }
    .ps-connector-bddf8f4c {
        display: none;
    }
}