:root {
            --p-color-bg: #f9fbfc;
            --p-color-primary: #008060;
            --p-color-primary-hover: #006e52;
            --p-color-text: #202223;
            --p-color-text-light: #6d7175;
            --p-border-radius: 12px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--p-color-bg); color: var(--p-color-text); line-height: 1.6; }

        header { background: white; padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 100; }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 22px; font-weight: 700; color: var(--p-color-primary); display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { height: 40px; border-radius: 8px; }
        .logo span { color: var(--p-color-text); }
        .btn-install { background: var(--p-color-primary); color: white; border: none; padding: 10px 20px; border-radius: 12px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; font-size: 14px; }
        
        .legal-content { max-width: 800px; margin: 80px auto; background: white; padding: 60px; border-radius: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #f1f1f1; }
        h1 { font-size: 36px; margin-bottom: 24px; color: #1c2226; border-bottom: 3px solid #e3f1df; padding-bottom: 15px; }
        h2 { font-size: 22px; margin-top: 40px; margin-bottom: 15px; color: #1c2226; }
        p, li { margin-bottom: 18px; color: #404448; }
        ul { padding-left: 20px; margin-bottom: 20px; }
        .highlight { background-color: #f1fcf1; padding: 20px; border-left: 4px solid #008060; margin: 30px 0; border-radius: 8px; }

        footer { background: #1c2226; color: white; padding: 80px 0 40px; margin-top: 100px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
        .footer-logo { font-size: 24px; font-weight: 700; color: #008060; margin-bottom: 20px; }
        .footer-desc { color: #b0b0b0; max-width: 300px; }
        .footer-links h4 { margin-bottom: 24px; font-size: 18px; }
        .footer-links a { display: block; color: #b0b0b0; text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
        .footer-links a:hover { color: white; }
        .copyright { text-align: center; color: #6d7175; padding-top: 40px; border-top: 1px solid #333; }

        @media (max-width: 700px) {
            .legal-content { padding: 30px; margin: 40px 20px; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
        }