:root {
            --primary: #10b981;
            --primary-dark: #047857;
            --text: #0f172a;
            --muted: #475569;
            --bg: #f8fafc;
            --card: #ffffff;
            --border: #e2e8f0;
        }

        body {
            margin: 0;
            font-family: Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(180deg, #ecfdf5 0%, var(--bg) 180px);
            color: var(--text);
        }

        .hero {
            padding: 56px 0 24px;
        }

        .hero-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .hero-logo {
            width: 96px;
            height: 96px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .policy-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
        }

        .badge-soft {
            background: #d1fae5;
            color: var(--primary-dark);
            font-weight: 600;
        }

        h1, h2 {
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 1.25rem;
            margin-top: 2rem;
        }

        p, li {
            color: var(--muted);
            line-height: 1.7;
        }

        .section-divider {
            border-top: 1px solid var(--border);
            margin: 1.5rem 0 0;
            padding-top: 1.5rem;
        }

        .footer-note {
            color: #64748b;
            font-size: 0.95rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--primary-dark);
            font-weight: 600;
            margin-right: 1rem;
        }

        .site-footer {
            margin-top: 2rem;
            padding: 1.25rem 0 0.5rem;
            text-align: center;
        }

        .site-footer p {
            margin-bottom: 0.35rem;
            color: #64748b;
        }

        .site-footer a {
            color: var(--primary-dark);
            font-weight: 600;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 32px;
            }

            .hero-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-logo {
                width: 80px;
                height: 80px;
                align-self: flex-end;
            }
        }