* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 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, #43e97b, #38f9d7);
            -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, #43e97b, #38f9d7);
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .description {
            background: linear-gradient(135deg, #43e97b15, #38f9d715);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid #43e97b;
        }
        .text-passage {
            background: #f8fafc;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #667eea;
            margin: 20px 0;
            line-height: 1.8;
            font-size: 15px;
        }
        .strategy-container {
            margin-bottom: 25px;
        }
        .strategy-header {
            background: linear-gradient(135deg, #43e97b, #38f9d7);
            color: white;
            padding: 12px 20px;
            border-radius: 10px;
            margin-bottom: 12px;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .strategy-number {
            background: rgba(255, 255, 255, 0.3);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        .strategy-content {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #43e97b;
        }
        .student-response {
            background: linear-gradient(135deg, #667eea10, #764ba210);
            padding: 12px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 3px solid #667eea;
        }
        .ai-coach {
            background: linear-gradient(135deg, #f5961410, #fbbf2410);
            padding: 12px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 3px solid #f59e0b;
            font-size: 14px;
        }
        .four-c-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 20px 0;
        }
        .c-card {
            background: white;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #43e97b;
        }
        .c-title {
            font-weight: 700;
            color: #43e97b;
            font-size: 16px;
            margin-bottom: 8px;
        }
        .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: #43e97b;
            border: 2px solid #43e97b;
        }
        .nav-btn:hover {
            background: #43e97b;
            color: white;
            transform: translateY(-2px);
        }