 .studentInnovationSection-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(to bottom, #faf5ff 0%, #f5f3ff 100%);
            padding: 60px 20px;
        }

        .studentInnovationSection-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .studentInnovationSection-badge {
            display: inline-block;
            background: white;
            color: #7c3aed;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
        }

        .studentInnovationSection-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin: 0 0 15px 0;
        }

        .studentInnovationSection-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            margin: 0;
        }

        .studentInnovationSection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }

        .studentInnovationSection-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .studentInnovationSection-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .studentInnovationSection-image-container {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .studentInnovationSection-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .studentInnovationSection-grade-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1f2937;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .studentInnovationSection-content {
            padding: 24px;
        }

        .studentInnovationSection-category {
            display: inline-block;
            background: #f3f4f6;
            color: #6b7280;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .studentInnovationSection-project-title {
            font-size:16px;
            font-weight: 700;
            color: #1f2937;
            margin: 0 0 10px 0;
            line-height:24px;
        }

        .studentInnovationSection-description {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
        }

        .studentInnovationSection-footer {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .studentInnovationSection-cta {
            font-size: 1.1rem;
            color: #374151;
            margin-bottom: 25px;
        }

        .studentInnovationSection-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .studentInnovationSection-stat-item {
            background: white;
            padding: 12px 28px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #374151;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }

        @media (max-width: 768px) {
            .studentInnovationSection-title {
                font-size: 2rem;
            }

            .studentInnovationSection-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .studentInnovationSection-stats {
                gap: 15px;
            }

            .studentInnovationSection-stat-item {
                font-size: 0.85rem;
                padding: 10px 20px;
            }
        }