
.process-wrapper {
    position: relative;
    padding: 40px 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    background: white;
    
    height: 100%;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px #fff;
    
}

.step-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-description {
    color: #666;
    font-size: 0.95rem;
}


.process-line {
    position: absolute;
    top: 65px;
    
    left: 12.5%;
    
    right: 12.5%;
    
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

@media (max-width: 768px) {
    .process-line {
        display: none;
    }

    .process-step {
        margin-bottom: 30px;
    }

    .step-number {
        margin-bottom: 15px;
    }
}