.business-steps {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.business-steps h2 {
    color: #0c3c63;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.step-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-header {
    background: #1e5b94;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: #ffd4d4;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 60px;
    height: 60px;
    fill: #1e5b94;
}

.step-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .business-steps h2 {
        font-size: 2rem;
    }
    
    .step-card {
        margin-bottom: 30px;
    }
}