/* ===== PROCESS-GRID - MINIMAL ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.process-item {
    background: white;
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}


.process-number {
     width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    /* box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2); */
}

.process-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.process-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-left: auto;
        margin-right: auto;
    }
}











































