* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #1a1a1a;
            color: #d4d4d4;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(139,69,19,0.9) 0%, rgba(160,82,45,0.9) 100%);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #f5f5f5;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: #f5f5f5;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #ff9800;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ff9800;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #f5f5f5;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        main {
            padding: 120px 0 50px;
            background-color: #1a1a1a;
            min-height: 100vh;
            position: relative;
        }
        
        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(139,69,19,0.1)" stroke-width="1"/></svg>');
            opacity: 0.5;
            z-index: -1;
        }
        
        .privacy-content {
            background-color: #252525;
            border: 2px solid #8b4513;
            border-radius: 5px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            margin-bottom: 50px;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #ff9800;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            font-weight: bold;
            font-family: 'Courier New', monospace;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background-color: #ff9800;
            bottom: -10px;
            left: 0;
        }
        
        .privacy-content h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #ff9800;
            text-transform: uppercase;
            font-weight: bold;
            font-family: 'Courier New', monospace;
        }
        
        .privacy-content h3 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: #ff9800;
            text-transform: uppercase;
            font-weight: bold;
            font-family: 'Courier New', monospace;
        }
        
        .privacy-content p {
            margin-bottom: 15px;
            color: #d4d4d4;
            font-weight: bold;
        }
        
        .privacy-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-content li {
            margin-bottom: 10px;
            color: #d4d4d4;
            font-weight: bold;
        }
        
        .privacy-content a {
            color: #ff9800;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .privacy-content a:hover {
            text-decoration: underline;
        }
        
        .last-updated {
            font-style: italic;
            color: #8b4513;
            margin-top: 30px;
            text-align: right;
        }
        
        .disclaimer {
            background-color: #8b4513;
            padding: 20px;
            text-align: center;
            color: #f5f5f5;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        footer {
            background-color: #0d0d0d;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #ff9800;
            margin-bottom: 20px;
            font-size: 1.3rem;
            text-transform: uppercase;
            font-weight: bold;
            font-family: 'Courier New', monospace;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #d4d4d4;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        
        .footer-column ul li a:hover {
            color: #ff9800;
            padding-left: 5px;
        }
        
        .footer-contact p {
            color: #d4d4d4;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #8b4513;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #8b4513;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .privacy-content {
                padding: 25px;
            }
        }

