* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0A192F;
            --secondary: #64FFDA;
            --accent: #FF2E63;
            --text: #CCD6F6;
            --bg: #020C1B;
            --card-bg: #112240;
            --section-bg: #0A192F;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Rajdhani', sans-serif;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            padding: 100px 20px 50px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .page-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .page-title h1 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .page-title p {
            font-size: 1.1rem;
            color: #8892B0;
        }

        .privacy-content {
            background-color: var(--card-bg);
            border-radius: 4px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(100, 255, 218, 0.1);
        }

        .privacy-section {
            margin-bottom: 30px;
        }

        .privacy-section h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .privacy-section h3 {
            font-size: 1.4rem;
            color: var(--accent);
            margin: 20px 0 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .privacy-section p {
            margin-bottom: 15px;
        }

        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .privacy-section ul li {
            margin-bottom: 8px;
        }

        .highlight {
            background-color: rgba(100, 255, 218, 0.1);
            padding: 15px;
            border-radius: 4px;
            margin: 20px 0;
            border-left: 4px solid var(--secondary);
        }

        .warning {
            background-color: rgba(255, 46, 99, 0.1);
            padding: 15px;
            border-radius: 4px;
            margin: 20px 0;
            border-left: 4px solid var(--accent);
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--text);
            padding: 50px 20px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
            font-size: 0.9rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--text);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 1px solid var(--secondary);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            flex: 1;
            padding-right: 20px;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .cookie-accept {
            background-color: var(--secondary);
            color: var(--primary);
        }

        .cookie-accept:hover {
            background-color: var(--accent);
        }

        .cookie-decline {
            background-color: transparent;
            color: var(--text);
            border: 1px solid var(--text);
        }

        .cookie-decline:hover {
            background-color: rgba(100, 255, 218, 0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 10px 0;
            }

            .burger {
                display: flex;
            }

            .page-title h1 {
                font-size: 2rem;
            }

            .privacy-content {
                padding: 25px;
            }
        }

        @media (max-width: 576px) {
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-content {
                padding-right: 0;
                margin-bottom: 15px;
            }
        }

