        .process-card {
            background: white;
            border-radius: 20px;
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary, #faa51a);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            height: 100%;
        }
        .process-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(250, 165, 26, 0.1);
        }
        .step-badge {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary, #faa51a);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 40px;
            font-weight: 700;
            margin-right: 12px;
        }
        .section-icon {
            color: var(--primary, #faa51a);
        }
