* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #0a192f;
            color: #ffffff;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #64ffda;
            text-decoration: none;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 30px;
        }
        
        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav a:hover {
            color: #64ffda;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #ffffff;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding: 120px 0 50px;
        }
        
        .page-title {
            font-size: 36px;
            margin-bottom: 20px;
            color: #64ffda;
            text-align: center;
        }
        
        .page-subtitle {
            font-size: 18px;
            margin-bottom: 50px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #8892b0;
        }
        
        .cookie-content {
            background-color: #112240;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 50px;
        }
        
        .cookie-section {
            margin-bottom: 30px;
        }
        
        .cookie-section h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #64ffda;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            color: #8892b0;
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #8892b0;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .cookie-type {
            background-color: #0a192f;
            border-radius: 8px;
            padding: 25px;
        }
        
        .cookie-type h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #64ffda;
        }
        
        .cookie-type p {
            color: #8892b0;
            margin-bottom: 15px;
        }
        
        .cookie-examples {
            background-color: #112240;
            border-radius: 4px;
            padding: 15px;
        }
        
        .cookie-examples h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #ffffff;
        }
        
        .cookie-examples ul {
            margin-left: 15px;
        }
        
        .cookie-examples li {
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        /* Footer */
        footer {
            background-color: #0a192f;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #64ffda;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #8892b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #64ffda;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #8892b0;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #112240;
            color: #8892b0;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 25, 47, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            .nav.active {
                transform: translateY(0);
            }
            
            .nav li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .cookie-types {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

