/* CSS стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #0a192f;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #64ffda;
            text-decoration: none;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #64ffda;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            padding: 100px 5% 5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #64ffda;
            text-align: center;
        }

        .privacy-content {
            background-color: #112240;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .privacy-section {
            margin-bottom: 2rem;
        }

        .privacy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #64ffda;
        }

        .privacy-section h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #ffffff;
        }

        .privacy-section p {
            margin-bottom: 1rem;
            color: #8892b0;
        }

        .privacy-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .privacy-section ul li {
            margin-bottom: 0.5rem;
            color: #8892b0;
        }

        /* Footer */
        footer {
            background-color: #0a192f;
            padding: 3rem 5%;
            border-top: 1px solid #112240;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            color: #64ffda;
            margin-bottom: 1rem;
        }

        .footer-logo p {
            color: #8892b0;
        }

        .footer-links {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.5rem;
        }

        .footer-links ul li a {
            color: #8892b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: #64ffda;
        }

        .footer-contact {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }

        .footer-contact h4 {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-contact p {
            color: #8892b0;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #112240;
            color: #8892b0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 25, 47, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 1rem 0;
            }

            .burger {
                display: block;
            }

            .page-title {
                font-size: 2rem;
            }

            .footer-content {
                flex-direction: column;
            }
        }

