.page-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 6rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .page-header p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            top: 0;
            left: 0;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .e1 {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -100px;
        }
        
        .e2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: -50px;
        }
        
        .e3 {
            width: 150px;
            height: 150px;
            bottom: -50px;
            left: 30%;
        }
        
        .legal-content {
            max-width: 900px;
            margin: 4rem auto;
            padding: 0 2rem;
            line-height: 1.6;
        }
        
        .legal-content h2 {
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            font-size: 1.75rem;
        }
        
        .legal-content h3 {
            margin: 1.5rem 0 0.75rem;
            font-size: 1.3rem;
        }
        
        .legal-content p {
            margin-bottom: 1.25rem;
        }
        
        .legal-content ul, .legal-content ol {
            margin: 1rem 0 1.5rem 2rem;
        }
        
        .legal-content li {
            margin-bottom: 0.75rem;
        }
        
        .legal-content .last-updated {
            font-style: italic;
            margin-bottom: 2.5rem;
            color: #666;
        }
        
        .legal-content a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .legal-content a:hover {
            text-decoration: underline;
        }
        
        .privacy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        .privacy-table th, .privacy-table td {
            border: 1px solid #e2e8f0;
            padding: 0.75rem 1rem;
            text-align: left;
        }
        
        .privacy-table th {
            background-color: #f8fafc;
            font-weight: 600;
        }
        
        .privacy-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.25rem;
            }
            
            .legal-content h2 {
                font-size: 1.5rem;
            }
            
            .privacy-table {
                display: block;
                overflow-x: auto;
            }
        }