
        :root {
            --primary: #005BA9;
            --secondary: #3A4655;
            --accent: #E74C3C;
            --light: #F8F9FA;
            --dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #ffffff;
        }
        .about-hero {
            background: linear-gradient(135deg, rgba(0, 91, 169, 0.85) 0%, rgba(58, 70, 85, 0.9) 100%), 
                        url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0 100px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .about-hero::before {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: white;
            transform: skewY(-2deg);
            z-index: 1;
        }
        .about-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .about-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            opacity: 0.9;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 80px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 50px auto;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 3px;
            background: var(--primary);
            transform: translateX(-50%);
        }
        .timeline-item {
            padding: 20px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 50px;
            text-align: right;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 50px;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: white;
            border: 3px solid var(--primary);
            border-radius: 50%;
            top: 30px;
            z-index: 1;
        }
        .timeline-item:nth-child(odd)::after {
            right: -10px;
        }
        .timeline-item:nth-child(even)::after {
            left: -10px;
        }
        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }
        .timeline-content h3 {
            color: var(--primary);
            margin-top: 0;
            font-size: 1.5rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
            margin: 50px 0;
        }
        .stat-card {
            background: white;
            padding: 30px 20px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 3rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .brand-wall {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin: 60px 0;
        }
        .brand-logo {
            height: 50px;
            filter: grayscale(100%) brightness(0) opacity(0.7);
            transition: all 0.3s ease;
        }
        .brand-logo:hover {
            filter: none;
            transform: scale(1.1);
        }
        .mission-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .mission-item {
            background: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 3px solid var(--accent);
        }
        .mission-item h3 {
            color: var(--secondary);
            margin-top: 0;
        }
        @media (max-width: 768px) {
            .timeline::before {
                left: 30px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
                text-align: left;
            }
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                left: 0;
                padding-right: 0;
                padding-left: 70px;
            }
            .timeline-item::after {
                left: 20px;
            }
            .about-hero h1 {
                font-size: 2.2rem;
            }
        }
    