.privacy-page {
            padding: 12rem 2rem 6rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        .privacy-header {
            margin-bottom: 4rem;
            text-align: center;
        }
        .privacy-header h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        .privacy-header .highlight {
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .privacy-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem;
        }
        .privacy-section {
            margin-bottom: 3rem;
        }
        .privacy-section:last-child {
            margin-bottom: 0;
        }
        .privacy-section h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .privacy-section h2::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }
        .privacy-section p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .privacy-section ul {
            list-style: none;
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        .privacy-section ul li {
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        .privacy-section ul li::before {
            content: '✓';
            color: var(--primary);
            position: absolute;
            left: 0;
            font-weight: 700;
        }
        .back-home {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        .back-home:hover {
            color: var(--primary);
            transform: translateX(-5px);
        }
        @media (max-width: 768px) {
            .privacy-content {
                padding: 2rem;
            }
        }