* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-dark: #0a0a1a;
            --primary-purple: #6366f1;
            --accent-pink: #ec4899;
            --white: #ffffff;
            --gray-light: #f8fafc;
            --gray-dark: #1e293b;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--white);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gray-dark) 100%);
            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, 26, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(99, 102, 241, 0.2);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-desktop {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-desktop a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-desktop a:hover, .nav-desktop a.active {
            color: var(--accent-pink);
        }
        
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--primary-purple), var(--accent-pink));
            transition: var(--transition);
        }
        
        .nav-desktop a:hover::after, .nav-desktop a.active::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: var(--white);
            transition: var(--transition);
        }
        
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--primary-dark);
            padding: 2rem;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
        }
        
        .nav-mobile a {
            display: block;
            color: var(--white);
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        
        .nav-mobile a:hover {
            color: var(--accent-pink);
            padding-left: 1rem;
        }
        
        main {
            margin-top: 80px;
            padding: 6rem 0;
        }
        
        .hero-about {
            text-align: center;
            margin-bottom: 6rem;
        }
        
        .hero-about h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--white), var(--accent-pink), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-about p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .content-section {
            margin-bottom: 6rem;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }
        
        .content-grid:nth-child(even) {
            direction: rtl;
        }
        
        .content-grid:nth-child(even) > * {
            direction: ltr;
        }
        
        .content-text h2 {
            font-size: 2.5rem;
            color: var(--accent-pink);
            margin-bottom: 2rem;
            font-weight: 800;
        }
        
        .content-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }
        
        .content-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }
        
        .content-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .philosophy-section {
            background: rgba(99, 102, 241, 0.1);
            padding: 4rem;
            border-radius: 30px;
            margin: 4rem 0;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }
        
        .philosophy-section h2 {
            font-size: 2.5rem;
            color: var(--accent-pink);
            margin-bottom: 2rem;
        }
        
        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .philosophy-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .philosophy-card h3 {
            color: var(--primary-purple);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .philosophy-card p {
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .timeline {
            margin: 4rem 0;
        }
        
        .timeline h2 {
            text-align: center;
            font-size: 2.5rem;
            color: var(--accent-pink);
            margin-bottom: 3rem;
        }
        
        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 100px 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: center;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            order: 3;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            order: 2;
        }
        
        .timeline-item:nth-child(even) .timeline-empty {
            order: 1;
        }
        
        .timeline-content {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .timeline-content h3 {
            color: var(--primary-purple);
            margin-bottom: 1rem;
        }
        
        .timeline-year {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-pink);
            background: rgba(99, 102, 241, 0.2);
            padding: 1rem;
            border-radius: 50px;
        }
        
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        
        .stat-card {
            text-align: center;
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
            padding: 3rem 2rem;
            border-radius: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        footer {
            background: var(--primary-dark);
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            color: var(--accent-pink);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .footer-section a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: var(--transition);
            opacity: 0.8;
        }
        
        .footer-section a:hover {
            color: var(--accent-pink);
            opacity: 1;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            
            .burger {
                display: flex;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .timeline-item {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .timeline-item:nth-child(even) .timeline-content {
                order: 2;
            }
            
            .timeline-item:nth-child(even) .timeline-year {
                order: 1;
            }
            
            .timeline-empty {
                display: none;
            }
            
            .philosophy-section {
                padding: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            main {
                padding: 4rem 0;
            }
        }

