.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .process-step {
        margin-bottom: 2rem;
    }
    
    .process-step:last-child {
        margin-bottom: 0;
    }
}
