body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        .privacy-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin: 2rem auto;
            max-width: 900px;
            padding: 3rem;
        }
        
        .header-section {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .header-section h1 {
            color: #2c3e50;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .header-section .subtitle {
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .effective-date {
            background: #e8f4fd;
            border-left: 4px solid #3498db;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .section {
            margin-bottom: 2.5rem;
        }
        
        .section h2 {
            color: #2c3e50;
            font-weight: 600;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .section h3 {
            color: #34495e;
            font-weight: 500;
            font-size: 1.1rem;
            margin: 1.5rem 0 0.5rem 0;
        }
        
        .section p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .section ul {
            color: #555;
            line-height: 1.6;
            padding-left: 1.5rem;
        }
        
        .section li {
            margin-bottom: 0.5rem;
        }
        
        .highlight-box {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .highlight-box .icon {
            color: #f39c12;
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        
        .privacy-promise {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .privacy-promise .icon {
            color: #28a745;
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        
        .data-table {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1rem 0;
        }
        
        .data-table table {
            width: 100%;
            margin-bottom: 0;
        }
        
        .data-table th {
            background: #e9ecef;
            color: #495057;
            font-weight: 600;
            padding: 0.75rem;
            border: 1px solid #dee2e6;
        }
        
        .data-table td {
            padding: 0.75rem;
            border: 1px solid #dee2e6;
            color: #555;
        }
        
        .contact-section {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
            text-align: center;
        }
        
        .contact-section h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        .contact-section p {
            color: #6c757d;
            margin-bottom: 0;
        }
        
        .icon {
            width: 20px;
            text-align: center;
        }
        
        .btn-back {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s ease;
        }
        
        .btn-back:hover {
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }
        
        .security-badge {
            background: #e1f5fe;
            border: 1px solid #b3e5fc;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            margin: 1.5rem 0;
        }
        
        .security-badge .icon {
            color: #0277bd;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
