  .privacy-page {
            min-height: 100vh;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding-top: 100px;
            padding-bottom: 60px;
        }
        
        .privacy-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .privacy-header {
            text-align: center;
            margin-bottom: 3rem;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .privacy-header h1 {
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .privacy-header p {
            color: #6b7280;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .privacy-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }
        
        .privacy-section {
            margin-bottom: 2.5rem;
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            color: #2563eb;
            margin-bottom: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .privacy-section h2 i {
            font-size: 1.5rem;
        }
        
        .privacy-section h3 {
            font-size: 1.3rem;
            color: #1f2937;
            margin-bottom: 0.8rem;
            margin-top: 1.5rem;
            font-weight: 600;
        }
        
        .privacy-section p {
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .privacy-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        .privacy-section li {
            color: #4b5563;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        
        .privacy-highlight {
            background: #f0f9ff;
            border-left: 4px solid #2563eb;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        
        .privacy-highlight p {
            color: #1e40af;
            font-weight: 500;
        }
        
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: color 0.3s ease;
        }
        
        .back-button:hover {
            color: #1d4ed8;
        }
        
        .last-updated {
            text-align: center;
            color: #6b7280;
            font-style: italic;
            margin-top: 2rem;
        }
        
        @media screen and (max-width: 768px) {
            .privacy-page {
                padding-top: 80px;
            }
            
            .privacy-header,
            .privacy-content {
                padding: 2rem;
            }
            
            .privacy-header h1 {
                font-size: 2rem;
            }
            
            .privacy-section h2 {
                font-size: 1.5rem;
            }
        }