
.step-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    background: #fff;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.95rem;
    margin-right: 12px;
    box-shadow: 0 4px 10px rgba(99,102,241,0.25);
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    transition: transform .15s ease;
}

.step-item:hover {
    transform: translateY(-2px);
}

.step-content .title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.step-content .desc {
    font-size: 0.94rem;
    color: #475569;
    margin: 0;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .step-item {
    margin-bottom: 1rem;
    }
}