        :root {
            --primary-color: #2c3e50;
            --text-color: #333333;
            --bg-color: #ffffff;
            --accent-color: #0073aa;
            --border-color: #e2e8f0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
        }

        .privacy-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
        }

        h1 {
            color: var(--primary-color);
            font-size: 2rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 12px;
            margin-bottom: 30px;
        }

        h2 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-top: 30px;
            margin-bottom: 15px;
            border-left: 4px solid var(--accent-color);
            padding-left: 12px;
        }

        p, ul, ol {
            margin-top: 0;
            margin-bottom: 16px;
            text-align: justify;
        }

        ul {
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

        .highlight-box {
            background-color: #f8fafc;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .highlight-box ul {
            margin-bottom: 0;
            list-style-type: none;
            padding-left: 0;
        }

        .highlight-box li {
            margin-bottom: 10px;
        }

        .highlight-box li:last-child {
            margin-bottom: 0;
        }

        strong {
            color: #1a202c;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .privacy-container {
                margin: 20px auto;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.15rem;
            }
        }