:root {
            --primary-color: #00A8CC;
            --secondary-color: #7D5AC2;
            --accent-color: #FF6B6B;
            --dark-bg: #0A0E27;
            --light-bg: #F5F7FA;
            --light-text: #FFFFFF;
            --dark-text: #2C3E50;
            --card-bg: rgba(245, 247, 250, 0.9);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-text);
            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-color: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 300;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .logo span {
            color: var(--secondary-color);
            font-weight: 500;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s;
            position: relative;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }

        .burger span {
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
            transition: all 0.3s;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        main {
            margin-top: 80px;
            padding: 50px 0;
        }

        .privacy-container {
            background-color: var(--card-bg);
            border-radius: 2px;
            padding: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        h1 {
            font-size: 36px;
            font-weight: 200;
            margin-bottom: 40px;
            color: var(--dark-text);
            letter-spacing: 2px;
        }

        h2 {
            font-size: 24px;
            font-weight: 400;
            margin: 40px 0 20px;
            color: var(--primary-color);
            letter-spacing: 1px;
        }

        h3 {
            font-size: 20px;
            font-weight: 400;
            margin: 30px 0 15px;
            color: var(--dark-text);
            letter-spacing: 1px;
        }

        p {
            margin-bottom: 20px;
            color: var(--dark-text);
            font-weight: 300;
            line-height: 1.8;
        }

        ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        li {
            margin-bottom: 12px;
            color: var(--dark-text);
            font-weight: 300;
            line-height: 1.8;
        }

        .last-updated {
            text-align: center;
            margin-top: 50px;
            font-style: italic;
            color: var(--dark-text);
            font-weight: 300;
        }

        footer {
            padding: 70px 0;
            background-color: var(--dark-bg);
            margin-top: 50px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 25px;
            color: var(--primary-color);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-column ul {
            list-style: none;
            margin-left: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 300;
            font-size: 14px;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .footer-column p {
            color: var(--light-text);
            margin-bottom: 12px;
            font-weight: 300;
            font-size: 14px;
            line-height: 1.8;
        }

        .copyright {
            margin-top: 50px;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-text);
            font-size: 14px;
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 14, 39, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .burger {
                display: flex;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 22px;
            }

            h3 {
                font-size: 18px;
            }
        }

