@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Bebas+Neue&display=swap');

        :root {
            --color-primary: #1A237E; /* Dark Indigo */
            --color-secondary: #FF6E40; /* Vibrant Orange */
            --color-accent: #E0E0E0; /* Light Gray */
            --color-text: #F5F5F5; /* Off-white */
            --color-background: #121212; /* Dark background */
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--color-background);
            color: var(--color-text);
            line-height: 1.6;
            padding-top: 100px;
        }
        
        h1, h2, h3 {
            font-family: 'Bebas Neue', sans-serif;
            color: var(--color-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 2rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            width: 100%;
            background-color: rgba(18, 18, 18, 0.9);
            z-index: 1000;
            transition: background-color 0.3s ease;
            top: 0;
            left: 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--color-text);
            text-decoration: none;
            letter-spacing: 3px;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 40px;
        }

        .nav-menu a {
            color: var(--color-text);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--color-secondary);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu span {
            width: 30px;
            height: 3px;
            background-color: var(--color-text);
            transition: all 0.3s ease;
        }

        .nav-menu.active {
            display: flex;
        }
        
        p, ul, li {
            margin-bottom: 1rem;
        }
        
        ul {
            padding-left: 20px;
        }
        
        footer {
            background-color: #000;
            color: var(--color-accent);
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-links, .footer-contact {
            text-align: left;
        }
        
        .footer-links h4, .footer-contact h4 {
            font-size: 1.2rem;
            color: var(--color-text);
            margin-bottom: 15px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links a, .footer-contact p {
            color: var(--color-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--color-secondary);
        }
        
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(18, 18, 18, 0.95);
                text-align: center;
                gap: 20px;
                padding: 20px 0;
            }
            .nav-menu.active {
                display: flex;
            }
            .burger-menu {
                display: flex;
            }
        }

