* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }
        :root {
            --primary-color: #f15a24;
            --secondary-color: #f9d8a5;
            --background-color: #1a1a1a;
            --text-color: #f0f0f0;
            --header-bg: rgba(26, 26, 26, 0.9);
            --font-family: 'Georgia', serif;
            --accent-color: #d1b19a;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
            padding-top: 60px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--header-bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--accent-color);
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            header{
                display: flex;
                justify-content: space-between;
                align-items:center;
            }
            .nav-links {
                position: fixed;
                right: 0;
                top: 60px;
                background-color: var(--background-color);
                width: 100%;
                display: flex;
                overflow: hidden;
                transition: height 0.5s ease;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }
            nav.open {
                height: calc(100vh - 60px);
            }
            nav a {
                margin: 1.5rem 0;
                font-size: 1.2rem;
            }
            .burger-menu {
                display: flex;
            }
            .nav-links {
                display: none;
            }
            .nav-links.open {
                display: flex;
            }
        }

        main {
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        h1 {
            color: var(--primary-color);
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        h2 {
            color: var(--accent-color);
            font-size: 1.8rem;
            margin-top: 2rem;
        }

        p {
            margin-bottom: 1rem;
        }

        ul {
            list-style: none;
            padding-left: 0;
        }

        ul li {
            background-color: #2a2a2a;
            margin-bottom: 1rem;
            padding: 1.5rem;
            border-left: 5px solid var(--primary-color);
            border-radius: 5px;
        }

        footer {
            background-color: #111;
            color: #ccc;
            padding: 2rem;
            text-align: center;
            border-top: 1px solid #333;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .disclaimer {
            padding: 1rem;
            background-color: #0d0d0d;
            text-align: center;
            font-size: 0.8rem;
            color: #888;
        }

