.privacy-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .privacy-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .back-button {
            background: rgba(42, 42, 42, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            text-decoration: none;
        }

        .back-button:hover {
            border-color: #6b7280;
            background: rgba(107, 114, 128, 0.3);
            transform: translateY(-2px);
        }

        .back-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .back-button:hover svg {
            transform: translateX(-2px);
        }

        .privacy-title {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
        }

        .privacy-content {
            background: rgba(42, 42, 42, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            line-height: 1.6;
        }

        .privacy-section {
            margin-bottom: 2rem;
        }

        .privacy-section:last-child {
            margin-bottom: 0;
        }

        .privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }

        .privacy-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.75rem;
            margin-top: 1.5rem;
        }

        .privacy-section p {
            color: #b0b0b0;
            margin-bottom: 1rem;
        }

        .privacy-section ul {
            color: #b0b0b0;
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .privacy-section li {
            margin-bottom: 0.5rem;
        }

        .privacy-section a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .privacy-section a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        .highlight {
            color: #fff;
            font-weight: 600;
        }

        .last-updated {
            color: #888;
            font-size: 0.9rem;
            font-style: italic;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .light-theme .privacy-title {
            color: #1a1a1a;
        }

        .light-theme .privacy-section h2 {
            color: #1a1a1a;
        }

        .light-theme .privacy-section h3 {
            color: #1a1a1a;
        }

        .light-theme .privacy-section p {
            color: #4a4a4a;
        }

        .light-theme .privacy-section ul {
            color: #4a4a4a;
        }

        .light-theme .privacy-content {
            background: rgba(248, 249, 250, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .light-theme .back-button {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #1a1a1a;
        }

        .light-theme .back-button:hover {
            background: rgba(0, 0, 0, 0.05);
            border-color: rgba(0, 0, 0, 0.2);
        }

        .light-theme .privacy-header {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .light-theme .last-updated {
            color: #6c757d;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .light-theme .highlight {
            color: #1a1a1a;
        }

        @media (max-width: 768px) {
            .privacy-container {
                padding: 1rem;
            }

            .privacy-header {
                margin-bottom: 1.5rem;
            }

            .privacy-title {
                font-size: 1.5rem;
            }

            .privacy-content {
                padding: 1.5rem;
            }

            .privacy-section h2 {
                font-size: 1.3rem;
            }

            .privacy-section h3 {
                font-size: 1.1rem;
            }
        }
