
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        header {
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eaeaea;
        }
        
        header h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            color: #5db7e8;
            font-weight: 700;
        }
        
        .subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline {
            position: relative;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        /* Vertical line */
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50px;
            width: 4px;
            background: linear-gradient(to bottom, #5db7e8, #2e9bd8);
            border-radius: 2px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            padding-left: 100px;
        }
        
        .timeline-year {
            position: absolute;
            left: 0;
            top: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #5db7e8, #2e9bd8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(93, 183, 232, 0.3);
            z-index: 1;
        }
        
        .timeline-content {
            background: #f5fbfe;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #5db7e8;
            transition: transform 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
        }
        
        .timeline-content h3 {
            color: #5db7e8;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .timeline-content p {
            color: #444;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .achievements {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        
        .achievement {
            background: #e1f5ff;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .achievement i {
            margin-right: 8px;
            color: #5db7e8;
        }
        
        .mission-statement {
            max-width: 1440px;
            margin: 80px auto 40px;
            padding: 40px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e1f4ff 100%);
            border-radius: 12px;
            text-align: center;
            position: relative;
            border-top: 4px solid #5db7e8;
        }
        
        .mission-statement h2 {
            color: #5db7e8;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        
        .mission-statement p {
            font-size: 1.2rem;
            color: #333;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            font-style: italic;
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 60px 0;
        }
        
        .stat-card {
            background: #f5fbfe;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            width: 220px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-top: 4px solid #5db7e8;
        }
        
        .stat-card i {
            font-size: 2.5rem;
            color: #5db7e8;
            margin-bottom: 15px;
        }
        
        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2e9bd8;
            margin: 10px 0;
        }
        
        .stat-label {
            color: #666;
            font-size: 1rem;
        }
        
        footer {
            text-align: center;
            margin-top: 60px;
            padding: 30px;
            color: #666;
            font-size: 1rem;
            border-top: 1px solid #eaeaea;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #5db7e8;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 20px 0;
            }
            
            header h1 {
                font-size: 2.5rem;
            }
            
            .timeline::before {
                left: 40px;
            }
            
            .timeline-item {
                padding-left: 80px;
            }
            
            .timeline-year {
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
            }
            
            .mission-statement {
                padding: 25px;
                margin: 50px auto 30px;
            }
            
            .stats-container {
                gap: 15px;
            }
            
            .stat-card {
                width: 45%;
            }
        }
        
        @media (max-width: 480px) {
            .stat-card {
                width: 100%;
            }
        }
    