.pro-steps-wrapper-0c96e37e {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.pro-step-item {
    flex: 1 1 250px;
    max-width: 350px;
}

.pro-step-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    align-items: center;
    gap: 20px;
}

.pro-step-icon-wrapper {
    flex-shrink: 0;
}

.pro-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff9ed;
    color: #e59d2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.pro-step-icon svg {
    width: 28px;
    height: 28px;
    fill: #e59d2a;
}

.pro-step-content {
    display: flex;
    flex-direction: column;
}

.pro-step-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1f36;
}

.pro-step-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

.pro-step-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e59d2a;
    font-size: 24px;
}

@media (max-width: 767px) {
    .pro-steps-wrapper-0c96e37e {
        flex-direction: column;
        align-items: center;
    }
    
    .pro-step-item {
        width: 100%;
        max-width: 100%;
    }
    
    .pro-step-arrow-container {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}