@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@500;700&display=swap');

        :root {
            --primary-bg: #0A1A2A;
            --secondary-bg: #1A2A3A;
            --accent-color: #00FFFF;
            --text-light: #FFFFFF;
            --text-muted: #B0B0B0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 26, 42, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
            z-index: 1001;
        }

        .burger div {
            width: 2rem;
            height: 0.2rem;
            background-color: var(--text-light);
            transition: all 0.3s ease;
        }

        .nav-active {
            transform: translateX(0%);
        }

        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .toggle .line2 {
            opacity: 0;
        }

        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .content-page {
            padding-top: 100px;
            padding-bottom: 50px;
            min-height: 100vh;
        }

        .content-page h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 40px;
            text-align: center;
        }

        .content-page h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            color: var(--text-light);
            margin-top: 30px;
            margin-bottom: 15px;
            border-left: 3px solid var(--accent-color);
            padding-left: 10px;
        }
        
        .content-page p {
            margin-bottom: 15px;
            color: var(--text-muted);
        }

        .content-page ul {
            list-style-type: none;
            padding-left: 20px;
        }

        .content-page li {
            position: relative;
            margin-bottom: 10px;
            color: var(--text-muted);
        }
        
        .content-page li::before {
            content: "•";
            color: var(--accent-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        footer {
            background-color: var(--secondary-bg);
            color: var(--text-muted);
            padding: 40px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .footer-nav {
            display: flex;
            gap: 20px;
        }
        
        .footer-nav a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--accent-color);
        }

        .footer-contact {
            text-align: left;
        }

        .footer-contact h4 {
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .footer-contact p {
            margin: 5px 0;
        }
        
        @media screen and (max-width: 768px) {
            .navbar {
                padding: 1rem 15px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                width: 70%;
                height: 100vh;
                background-color: var(--secondary-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
            }

            .nav-links a {
                font-size: 1.5rem;
                padding: 1.5rem 0;
            }

            .burger {
                display: flex;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-nav {
                flex-direction: column;
            }
        }

