/* Ретро-футуризъм стил */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #1a1a2e;
            color: #f5f5f5;
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header стилове */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            z-index: 1000;
            border-bottom: 2px solid #FF6B6B;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #FFE66D;
            text-decoration: none;
            font-family: 'Courier New', monospace;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #4ECDC4;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
            font-family: 'Courier New', monospace;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #FF6B6B;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #FFE66D;
            border-radius: 3px;
        }
        
        /* Основно съдържание */
        .privacy-content {
            background-color: #16213e;
            padding: 50px 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 30px 0;
            border: 1px solid rgba(78, 205, 196, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .privacy-content::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background-color: rgba(255, 107, 107, 0.1);
            border-radius: 50%;
            z-index: 1;
        }
        
        .privacy-content h1 {
            font-size: 32px;
            color: #FFE66D;
            margin-bottom: 30px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Courier New', monospace;
            position: relative;
            z-index: 2;
        }
        
        .privacy-content h2 {
            font-size: 24px;
            color: #4ECDC4;
            margin: 30px 0 15px;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
            position: relative;
            z-index: 2;
        }
        
        .privacy-content h3 {
            font-size: 20px;
            color: #FFE66D;
            margin: 20px 0 10px;
            position: relative;
            z-index: 2;
        }
        
        .privacy-content p {
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .privacy-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .privacy-content li {
            margin-bottom: 10px;
        }
        
        .privacy-content strong {
            color: #FF6B6B;
        }
        
        .privacy-content a {
            color: #FFE66D;
            text-decoration: none;
        }
        
        /* Footer */
        footer {
            background-color: #0f0f1e;
            color: #f5f5f5;
            padding: 50px 0 20px;
            border-top: 2px solid #FF6B6B;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #FFE66D;
            font-family: 'Courier New', monospace;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #4ECDC4;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #FFE66D;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #4ECDC4;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(78, 205, 196, 0.2);
            font-size: 14px;
            color: #4ECDC4;
        }
        
        /* Адаптивност */
        @media (max-width: 768px) {
              nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #16213e;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s;
            }

            nav ul.show {
                left: 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .privacy-content {
                padding: 30px 15px;
            }
            
            .privacy-content h1 {
                font-size: 28px;
            }
            
            .privacy-content h2 {
                font-size: 22px;
            }
        }

