:root {
            --primary: #00CED1;
            --secondary: #FF6347;
            --accent: #FFD700;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --text: #EAEAEA;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 20px rgba(0, 206, 209, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Courier New', monospace;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--secondary);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background: var(--primary);
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            min-height: 100vh;
        }
        
        .privacy-header {
            padding: 50px 0;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.7)), url('../img/06.webp') no-repeat center center/cover;
            position: relative;
        }
        
        .privacy-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 206, 209, 0.2) 0%, transparent 50%);
            z-index: 1;
        }
        
        .privacy-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .privacy-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Courier New', monospace;
        }
        
        .privacy-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: var(--text);
        }
        
        .privacy-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--dark), #16213E);
        }
        
        .privacy-section:nth-child(even) {
            background: linear-gradient(180deg, #16213E, var(--dark));
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            font-family: 'Courier New', monospace;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--secondary);
        }
        
        .privacy-text {
            margin-bottom: 30px;
            color: var(--text);
        }
        
        .privacy-list {
            list-style: none;
            margin-left: 20px;
            margin-bottom: 30px;
        }
        
        .privacy-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .privacy-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        .privacy-subtitle {
            font-size: 1.3rem;
            margin: 30px 0 15px;
            color: var(--accent);
            font-family: 'Courier New', monospace;
        }
        
        /* Footer */
        footer {
            background: #1A1A2E;
            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 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Courier New', monospace;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--text);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .privacy-content h1 {
                font-size: 2rem;
            }
            
            .privacy-content p {
                font-size: 1rem;
            }
        }

