* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a0a0f;
            --secondary: #1a1a2e;
            --accent: #00ff88;
            --accent-glow: #00ff8844;
            --text: #ffffff;
            --text-dim: #a0a0a0;
            --card-bg: rgba(26, 26, 46, 0.8);
            --gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--gradient);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--accent-glow);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            text-shadow: 0 0 20px var(--accent-glow);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent);
            text-shadow: 0 0 10px var(--accent-glow);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            transition: 0.3s;
        }

        main {
            margin-top: 100px;
            padding: 4rem 0;
        }

        .page-hero {
            text-align: center;
            padding: 6rem 0;
            background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
        }

        .page-hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--text), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero p {
            font-size: 1.3rem;
            color: var(--text-dim);
            max-width: 600px;
            margin: 0 auto;
        }

        .content-section {
            padding: 4rem 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 6rem;
        }

        .content-grid:nth-child(even) {
            direction: rtl;
        }

        .content-grid:nth-child(even) > * {
            direction: ltr;
        }

        .content-text h2 {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 2rem;
            font-weight: bold;
        }

        .content-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .content-image {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 16/10;
            backdrop-filter: blur(10px);
            border: 1px solid var(--accent-glow);
        }

        .content-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .stats-section {
            background: var(--secondary);
            padding: 6rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-card {
            text-align: center;
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--accent-glow);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .stat-desc {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .timeline-section {
            padding: 6rem 0;
            background: var(--primary);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 4rem;
            align-items: center;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--accent-glow);
            margin: 0 2rem;
        }

        .timeline-date {
            color: var(--accent);
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .timeline-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .timeline-desc {
            color: var(--text-dim);
            line-height: 1.6;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: bold;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--accent);
        }

        footer {
            background: var(--primary);
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--accent-glow);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section a {
            color: var(--text-dim);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--accent-glow);
            color: var(--text-dim);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .burger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active span:nth-child(2) {
                opacity: 0;
            }

            .burger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .content-grid:nth-child(even) {
                direction: ltr;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                flex-direction: row !important;
                padding-left: 50px;
            }

            .timeline-item:nth-child(even) {
                flex-direction: row !important;
            }

            .timeline-content {
                margin: 0;
            }
        }

