.step-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.2s ease;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 36px;
}

.step-content {
    flex: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: var(--color-black);
    color: #fff;
    border-radius: 5px;
    font-size: var(--fs-small);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.step-list li {
    padding: 6px 0;
    color: #6b7280;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.step-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .step-card {flex-direction: column; padding: 10px; margin-bottom: 10px; gap: 10px;}
}
