.bonbloc-process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px 0;
    text-align: center;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 20px;
    min-width: 200px;
}

.step-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: #f4f4f4;
    padding: 10px;
    margin-bottom: 15px;
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.step-desc {
    font-size: 14px;
    color: #666;
}

.step-arrow {
    position: absolute;
    right: -20px;
    top: 40%;
    font-size: 24px;
    color: #999;
}

.process-step:last-child .step-arrow {
    display: none;
}

@media(max-width: 768px) {
    .bonbloc-process-container {
        flex-direction: column;
    }
    .step-arrow {
        display: none;
    }
}
