.finance-wizard * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.finance-wizard {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f9fa;
    padding: 16px;
    font-size: 18px;
}

.finance-wizard .container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .finance-wizard .header {
            background: white;
            padding: 32px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border: 2px solid #e5e7eb;
            margin-bottom: 24px;
            text-align: center;
        }
        
        .finance-wizard h1 {
            color: #000;
            font-size: 2em;
            margin-bottom: 12px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        
        .finance-wizard .subtitle {
            color: #374151;
            font-size: 1.05em;
            font-weight: 500;
        }
        
        .finance-wizard .card {
            background: white;
            padding: 32px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border: 2px solid #e5e7eb;
            margin-bottom: 24px;
        }
        
        .finance-wizard .step {
            display: none;
        }
        
        .step.active {
            display: block;
            animation: fadeIn 0.3s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .finance-wizard .question {
            font-size: 1.4em;
            font-weight: 700;
            color: #000;
            margin-bottom: 24px;
            line-height: 1.4;
        }
        
        .finance-wizard .explanation {
            background: #dbeafe;
            border-left: 4px solid #2563eb;
            padding: 16px;
            margin-bottom: 24px;
            border-radius: 4px;
            color: #1e3a8a;
        }
        
        .finance-wizard .buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .finance-wizard .btn {
            flex: 1;
            min-width: 120px;
            padding: 16px 24px;
            font-size: 1.1em;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }
        
        .finance-wizard .btn-yes {
            background: #10b981;
            color: white;
        }
        
        .btn-yes:hover {
            background: #059669;
            transform: translateY(-2px);
        }
        
        .finance-wizard .btn-no {
            background: #ef4444;
            color: white;
        }
        
        .btn-no:hover {
            background: #dc2626;
            transform: translateY(-2px);
        }
        
        .finance-wizard .btn-back {
            background: #6b7280;
            color: white;
            margin-top: 16px;
            flex: none;
            width: 100%;
        }
        
        .btn-back:hover {
            background: #4b5563;
        }
        
        .finance-wizard .result {
            background: white;
            padding: 32px;
            border-radius: 10px;
            border: 2px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .result h2 {
            font-size: 1.8em;
            margin-bottom: 16px;
            color: #000;
        }
        
        .result p {
            margin-bottom: 16px;
            line-height: 1.7;
        }
        
        .result ul {
            margin: 16px 0;
            padding-left: 24px;
        }
        
        .result li {
            margin-bottom: 12px;
        }
        
        .finance-wizard .priority-badge {
            display: inline-block;
            background: #2563eb;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 700;
            margin-bottom: 16px;
            font-size: 0.9em;
        }
        
        .finance-wizard .progress {
            background: #e5e7eb;
            height: 8px;
            border-radius: 4px;
            margin-bottom: 24px;
            overflow: hidden;
        }
        
        .finance-wizard .progress-bar {
            background: #2563eb;
            height: 100%;
            transition: width 0.3s;
            border-radius: 4px;
        }
        
        .finance-wizard .restart-btn {
            background: #2563eb;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1em;
            cursor: pointer;
            margin-top: 24px;
            transition: all 0.2s;
            font-family: inherit;
        }
        
        .restart-btn:hover {
            background: #1e40af;
            transform: translateY(-2px);
        }
        
        .finance-wizard .footer {
            text-align: center;
            color: #64748b;
            margin-top: 32px;
            font-size: 0.9em;
            padding: 24px;
            background: white;
            border-radius: 10px;
            border: 2px solid #e5e7eb;
        }
        
        .footer a {
            color: #2563eb;
            font-weight: 600;
            text-decoration: none;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }