        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #2c3e50;
            line-height: 1.6;
        }
        
        .policy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .policy-header {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(120deg, #4f46e5, #2563eb);
            color: white;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .policy-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .policy-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .policy-nav a {
            background: white;
            padding: 12px 20px;
            border-radius: 30px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .policy-nav a:hover {
            background: #4cd964;
            color: white;
            transform: translateY(-3px);
        }
        
        .policy-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .policy-section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
        }
        
        .policy-section h3 {
            color: #2c3e50;
            margin: 25px 0 15px;
        }
        
        .policy-section p {
            margin-bottom: 15px;
            color: #5a6b82;
        }
        
        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .policy-section li {
            margin-bottom: 10px;
            color: #5a6b82;
        }
        
        .highlight-box {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #4cd964;
        }
        
        .contact-info {
            background: #f0f9f1;
            padding: 20px;
            border-radius: 8px;
            margin-top: 25px;
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #888;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eaeaea;
        }
        
        @media (max-width: 768px) {
            .policy-header h1 {
                font-size: 2rem;
            }
            
            .policy-nav {
                flex-direction: column;
                align-items: center;
            }
            
            .policy-nav a {
                width: 100%;
                text-align: center;
            }
        }