* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #00e5ff;
            --secondary: #7c4dff;
            --accent: #ff4081;
            --background: #0a0e27;
            --text: #e0e0e0;
            --light: #ffffff;
            --shadow: rgba(0, 229, 255, 0.3);
        }
        
        body {
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
            font-weight: 300;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            color: var(--light);
            padding: 15px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 229, 255, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            position: relative;
            text-transform: uppercase;
            font-size: 14px;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 80px;
        }
        
        .page-header {
            background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(124, 77, 255, 0.2));
            color: var(--light);
            padding: 50px 0;
            margin-bottom: 50px;
            position: relative;
        }
        
        .page-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(0, 229, 255, 0.1), transparent 70%);
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }
        
        .content-wrapper {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 229, 255, 0.2);
        }
        
        .content-wrapper h2 {
            color: var(--primary);
            margin: 30px 0 15px;
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .content-wrapper h3 {
            color: var(--secondary);
            margin: 25px 0 10px;
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .content-wrapper p {
            margin-bottom: 15px;
        }
        
        .content-wrapper ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .content-wrapper li {
            margin-bottom: 8px;
        }
        
        /* Footer */
        footer {
            background-color: rgba(10, 14, 39, 0.9);
            color: var(--light);
            padding: 70px 0 20px;
            border-top: 1px solid rgba(0, 229, 255, 0.3);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info p i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 14, 39, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                border-bottom: 1px solid rgba(0, 229, 255, 0.3);
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .content-wrapper {
                padding: 20px;
            }
        }

