* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            min-height: 100vh;
            color: #333;
            padding: 20px;
        }
        .container { max-width: 1200px; margin: 0 auto; }
        header {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 16px;
            padding: 20px 30px;
            margin-bottom: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        h1 {
            font-size: 28px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        .subtitle { color: #666; font-size: 14px; }
        .main-content {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .pedagogy-badge {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .description {
            background: linear-gradient(135deg, #f093fb15, #f5576c15);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid #f093fb;
        }
        .fact-box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border: 2px solid #f093fb;
            margin: 20px 0;
            font-size: 16px;
            text-align: center;
            font-weight: 600;
        }
        .depth-progression {
            margin: 25px 0;
        }
        .depth-level {
            margin: 20px 0;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            border-left: 4px solid #f093fb;
        }
        .level-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .surface { background: #dc2626; color: white; }
        .deeper { background: #f59e0b; color: white; }
        .causal { background: #6a11cb; color: white; }
        .contextual { background: #2575fc; color: white; }
        .transfer { background: #10b981; color: white; }
        .question-box {
            background: linear-gradient(135deg, #f093fb10, #f5576c10);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid #f093fb;
            margin: 10px 0;
        }
        .answer-box {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid #10b981;
            margin: 10px 0;
        }
        .benefits-section {
            background: linear-gradient(135deg, #10b98110, #05966910);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #10b981;
            margin-top: 25px;
        }
        .benefits-section h3 {
            color: #10b981;
            margin-bottom: 15px;
            font-size: 16px;
        }
        .benefits-section ul {
            list-style: none;
            padding: 0;
        }
        .benefits-section li {
            padding: 8px 0;
            color: #444;
            font-size: 14px;
            line-height: 1.6;
        }
        .benefits-section li::before {
            content: "✓";
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
        }
        .action-bar {
            display: flex;
            gap: 15px;
            justify-content: center;
            padding: 20px 0;
            border-top: 1px solid #e0e0e0;
            margin-top: 20px;
        }
        .action-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        .nav-btn {
            background: white;
            color: #f093fb;
            border: 2px solid #f093fb;
        }
        .nav-btn:hover {
            background: #f093fb;
            color: white;
            transform: translateY(-2px);
        }