.process-steps-container-bdeced5d {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Connecting Line */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px; /* Adjust based on icon height */
    left: 50%;
    width: 100%;
    height: 0;
    border-top: 2px dashed #ddd;
    z-index: 0;
}

.process-step-icon-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    padding: 0 20px;
    background: transparent;
}

.process-step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-size: 32px;
    color: #1b263b;
    margin: 0 auto;
}

.process-step-icon svg {
    width: 32px;
    height: 32px;
    fill: #1b263b;
}

.process-step-icon.highlighted {
    background-color: #fcf650;
    box-shadow: 0 4px 15px rgba(252, 246, 80, 0.4);
}

.process-step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.process-step-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 767px) {
    .process-steps-container-bdeced5d {
        flex-direction: column;
        gap: 50px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}