@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');
        
        :root {
            --primary-color: #000033; /* Deep Navy Blue */
            --secondary-color: #FF5722; /* Vibrant Orange */
            --accent-color: #E0E0E0; /* Light Grey for metallic shine */
            --text-color: #F0F0F0; /* Off-white */
            --bg-color: #12122B; /* Dark Blue-Purple */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            line-height: 1.6;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            background: rgba(0, 0, 51, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--secondary-color);
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 700;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .main-content {
            padding: 10rem 5% 4rem;
        }

        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 2rem;
        }

        h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        p, ul {
            margin-bottom: 1.5rem;
        }
        
        ul {
            list-style: none;
            padding-left: 1.5rem;
        }

        li::before {
            content: '»';
            color: var(--secondary-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* Footer and other shared styles from index.html */
        footer {
            background-color: var(--primary-color);
            padding: 2rem 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
        }
        
        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--secondary-color);
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
        }
        
        .footer-section {
            flex: 1 1 200px;
        }

        .footer-section h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        address {
            font-style: normal;
        }

        .copyright {
            width: 100%;
            text-align: center;
            margin-top: 2rem;
            border-top: 1px solid var(--accent-color);
            padding-top: 1rem;
            font-size: 0.8rem;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 768px) {
            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                background-color: rgba(0, 0, 51, 0.95);
                backdrop-filter: blur(10px);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                display: none;
            }

            .nav-menu.active {
                display: flex;
            }

            .burger-menu {
                display: flex;
            }
            
            footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-section {
                margin-bottom: 1rem;
            }
        }

