 
        .champions-container {
            max-width:1200px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
            background-color: #fff;
        }
        
        .section-title {
            font-size: 32px;
            font-weight: bold;
            text-transform: uppercase;
            color: #333;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }
        
        .champions-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }
        
        .champions-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .champion-card {
            width: 550px;
            text-align: left;
        }
        
        .champion-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .raj-image {
            filter: grayscale(100%);
        }
        
        .champion-name {
            font-size: 24px;
            font-weight: bold;
            color: #222;
            margin-bottom: 10px;
        }
        
        .champion-title {
            font-size: 16px;
            color: #555;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .champion-bio {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        
        .achievements {
            font-size: 14px;
            color: #444;
            line-height: 1.6;
            margin-top: 15px;
            padding-left: 15px;
            border-left: 3px solid #4CAF50;
        }
        
        @media (max-width: 768px) {
            .champions-grid {
                flex-direction: column;
                align-items: center;
            }
            
            .champion-card {
                width: 100%;
                max-width: 350px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }