      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafc;
            color: #1e293b;
            line-height: 1.6;
        }

        :root {
            --primary: #2563eb;
            --primary-light: #60a5fa;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --border-light: #e2e8f0;
            --card-bg: #ffffff;
            --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05);
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .policy-card {
            background: var(--card-bg);
            border-radius: 32px;
            padding: 3rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
            border-bottom: 3px solid var(--primary-light);
            padding-bottom: 1rem;
        }

        h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #444;
            margin: 2rem 0 1rem;
        }

        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #444;
            margin: 1.5rem 0 1rem;
        }

        p {
            color: #444;
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }

        ul {
            margin: 1rem 0 1.5rem 2rem;
            color: #444;
        }

        li {
            margin-bottom: 0.8rem;
            color: #444;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            color: var(--primary-light);
            text-decoration: underline;
        }

        .footer-note {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-light);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .back-link {
            display: inline-block;
            margin-top: 2rem;
            background: var(--primary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
        }

        .back-link:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            text-decoration: none;
            color: white;
        }

        @media (max-width: 600px) {
            .container {
                padding: 1.5rem;
            }
            .policy-card {
                padding: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }