        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Primary Colors */
            --pomo-red: #E85A4F;
            --warm-orange: #F5A962;
            --tomato-green: #6BB77B;
            --cozy-purple: #9B8DC9;
            --soft-blue: #89B5D6;
            --soft-pink: #F5B5B5;

            /* Neutrals */
            --charcoal: #2D2926;
            --charcoal-light: #4A4543;
            --warm-gray: #8B8582;
            --warm-gray-light: #C4BFBC;
            --mist: #F5F2EF;
            --ghost-white: #FFF;

            /* Typography */
            --font-display: 'Quicksand', sans-serif;
            --font-body: 'Nunito', sans-serif;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.8;
            color: var(--charcoal);
            background: linear-gradient(135deg, var(--mist) 0%, var(--ghost-white) 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 20px 0;
            background: var(--ghost-white);
            box-shadow: 0 2px 10px rgba(45, 41, 38, 0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--pomo-red);
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .back-link {
            color: var(--charcoal);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .back-link:hover {
            color: var(--pomo-red);
        }

        /* Main Content */
        main {
            padding: 60px 20px;
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .privacy-header h1 {
            font-family: var(--font-display);
            font-size: 48px;
            color: var(--pomo-red);
            margin-bottom: 20px;
        }

        .last-updated {
            color: var(--warm-gray);
            font-size: 16px;
        }

        .content {
            background: var(--ghost-white);
            padding: 60px;
            border-radius: 28px;
            box-shadow: 0 2px 12px rgba(45, 41, 38, 0.05);
        }

        .section {
            margin-bottom: 40px;
        }

        .section h2 {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--charcoal);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--pomo-red);
        }

        .section h3 {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--charcoal-light);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .section p {
            margin-bottom: 15px;
            color: var(--warm-gray);
        }

        .section ul, .section ol {
            margin-left: 30px;
            margin-bottom: 15px;
            color: var(--warm-gray);
        }

        .section li {
            margin-bottom: 10px;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--pomo-red) 0%, var(--warm-orange) 100%);
            color: var(--ghost-white);
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
        }

        .highlight-box h3 {
            color: var(--ghost-white);
            font-size: 24px;
            margin-bottom: 15px;
        }

        .highlight-box p {
            color: var(--ghost-white);
            opacity: 0.95;
        }

        .contact-info {
            background: var(--mist);
            padding: 30px;
            border-radius: 20px;
            margin-top: 40px;
            text-align: center;
        }

        .contact-info h3 {
            font-family: var(--font-display);
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--charcoal);
        }

        .contact-info a {
            color: var(--pomo-red);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            color: var(--ghost-white);
            padding: 40px 20px;
            margin-top: 80px;
            text-align: center;
        }

        .footer-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            display: block;
            opacity: 0.8;
        }

        footer a {
            color: var(--warm-orange);
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .privacy-header h1 {
                font-size: 36px;
            }

            .content {
                padding: 30px 20px;
            }

            .section h2 {
                font-size: 24px;
            }

            .section h3 {
                font-size: 20px;
            }
        }
