
        :root {
            --primary: #2a6e3f;
            --secondary: #1a4b2a;
            --accent: #4CAF50;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        
        .policy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        
        .header {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--primary);
            margin-bottom: 3rem;
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .logo-icon {
            color: var(--accent);
            font-size: 2.8rem;
        }
        
        h1 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent);
        }
        
        .last-updated {
            color: var(--gray);
            font-style: italic;
            margin-bottom: 2rem;
        }
        
        h2 {
            color: var(--primary);
            margin: 2.5rem 0 1rem 0;
            font-size: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        
        p {
            margin-bottom: 1rem;
            color: #444;
        }
        
        ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        li:before {
            content: "•";
            color: var(--accent);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -3px;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #2a6e3f 0%, #1a4b2a 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
            text-align: center;
        }
        
        .contact-section h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        
        .contact-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        
        .contact-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .contact-link:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .footer {
            text-align: center;
            padding: 2rem;
            color: var(--gray);
            font-size: 0.9rem;
            border-top: 1px solid #eee;
            margin-top: 3rem;
        }
        
        .compliance-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f8f9fa;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        
        .badge-icon {
            color: var(--accent);
        }
        
        @media (max-width: 768px) {
            .policy-container {
                padding: 1.5rem;
                margin: 1rem;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .contact-links {
                flex-direction: column;
                align-items: center;
            }
        }
    