/* CSS-стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #9d00ff;
            --secondary-color: #ff0080;
            --tertiary-color: #00ffff;
            --dark-color: #121212;
            --light-color: #f0f0f0;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--light-color);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(157, 0, 255, 0.3);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(157, 0, 255, 0.7);
        }
        nav ul {
    display: flex
;
    list-style: none;
}
        
         nav ul.active{
                display: flex;
                position: absolute;
                top: 0;
                right: 0;
                flex-direction: column;
                height: 100vh;
                width: 70%;
                background-color: black;
               
                padding: 32px 0;
            }

            nav ul li{
                margin: 24px;
            }
        
        nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 5px rgba(255, 0, 128, 0.7);
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            position: relative;
            z-index: 1000;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .page-title {
            font-size: 40px;
            margin-bottom: 30px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .page-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
        }
        
        .privacy-content {
            background-color: #1a1a1a;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
        }
        
        .privacy-section {
            margin-bottom: 30px;
        }
        
        .privacy-section h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--tertiary-color);
        }
        
        .privacy-section h3 {
            font-size: 20px;
            margin: 20px 0 10px;
            color: var(--primary-color);
        }
        
        .privacy-section p {
            margin-bottom: 15px;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-section li {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary-color);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .page-title {
                font-size: 30px;
            }
            
            .privacy-content {
                padding: 20px;
            }
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial Black', Arial, sans-serif;
            background: #ffffff;
            color: #000000;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
        }

        .header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 3rem 0;
            background: #cc0000;
            color: #ffffff;
            transform: skew(-2deg);
            position: relative;
        }

        .header::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 0px;
            bottom: -15px;
            background: #ffcc00;
            z-index: -1;
        }

        .header-content {
            transform: skew(2deg);
        }

        .header h1 {
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 0px #000000;
        }

        .header p {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 2rem;
            padding: 1rem 2rem;
            background: #cc0000;
            color: #ffffff;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 800;
            border: 3px solid #000000;
            transition: all 0.3s;
            transform: skew(-5deg);
        }

        .back-link:hover {
            background: #000000;
            color: #ffcc00;
            transform: skew(-5deg) scale(1.05);
        }

        .content {
            background: #ffffff;
            border: 6px solid #000000;
            padding: 3rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .content::after {
            content: '';
            position: absolute;
            top: 12px;
            left: 12px;
            right: -12px;
            bottom: -12px;
            background: #ffcc00;
            z-index: -1;
        }

        h2 {
            font-size: 2rem;
            color: #cc0000;
            margin: 2rem 0 1rem 0;
            font-weight: 900;
            text-transform: uppercase;
            border-left: 6px solid #cc0000;
            padding-left: 1rem;
            transform: skew(-3deg);
        }

        h3 {
            font-size: 1.4rem;
            color: #000000;
            margin: 1.5rem 0 0.8rem 0;
            font-weight: 800;
            text-transform: uppercase;
        }

        p {
            margin-bottom: 1.2rem;
            font-weight: 500;
            text-align: justify;
        }

        ul {
            margin: 1rem 0 1rem 2rem;
        }

        li {
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .important-box {
            background: #cc0000;
            color: #ffffff;
            padding: 2rem;
            border: 4px solid #000000;
            margin: 2rem 0;
            transform: skew(-2deg);
            position: relative;
        }

        .important-box::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            right: -8px;
            bottom: -8px;
            background: #ffcc00;
            z-index: -1;
        }

        .important-box-content {
            transform: skew(2deg);
        }

        .warning-box {
            background: #ffcc00;
            color: #000000;
            padding: 2rem;
            border: 4px solid #000000;
            margin: 2rem 0;
            font-weight: 600;
        }

        .contact-info {
            background: #000000;
            color: #ffffff;
            padding: 2rem;
            border: 4px solid #cc0000;
            margin: 2rem 0;
            transform: skew(-3deg);
        }

        .contact-info-content {
            transform: skew(3deg);
        }

        .contact-info h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
        }

        .date-info {
            text-align: center;
            font-style: italic;
            color: #cc0000;
            border-top: 4px solid #cc0000;
            padding-top: 2rem;
            margin-top: 3rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        footer {
            background: #000000;
            color: #ffffff;
            padding: 2rem;
            text-align: center;
            border-top: 6px solid #cc0000;
            margin-top: 3rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffcc00;
        }

        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .header h1 {
                font-size: 2rem;
            }

            .content {
                padding: 2rem;
            }

            h2{
                font-size: 1.5em;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

