/* MIKISM — privacy page styles (externalized from inline <style> for CSP) */
        /* Privacy page overrides */
        .privacy-wrap {
            max-width: 740px;
            margin: 0 auto;
            padding: 160px 24px 100px;
        }

        .privacy-header {
            margin-bottom: 64px;
        }

        .privacy-header h1 {
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            color: #1d1d1f;
            margin-bottom: 12px;
        }

        .privacy-updated {
            font-size: 0.95rem;
            color: #86868b;
            margin-bottom: 4px;
        }

        .privacy-section {
            margin-bottom: 48px;
        }

        .privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #1d1d1f;
            margin-bottom: 16px;
        }

        .privacy-section h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1d1d1f;
            margin: 28px 0 12px;
        }

        .privacy-section p,
        .privacy-section li {
            font-size: 1.05rem;
            line-height: 1.75;
            color: #6e6e73;
            margin-bottom: 12px;
        }

        .privacy-section a {
            color: #1d1d1f;
            text-decoration: none;
            border-bottom: 1px solid #d2d2d7;
            transition: border-color 0.2s ease;
        }

        .privacy-section a:hover {
            border-color: #1d1d1f;
        }

        .privacy-section ul {
            margin-left: 24px;
            margin-bottom: 16px;
        }

        .privacy-section ul li {
            margin-bottom: 6px;
        }

        .privacy-section ul li strong {
            color: #1d1d1f;
        }

        .contact-info-box {
            background: #f5f5f7;
            padding: 28px 32px;
            border-radius: 16px;
            margin-top: 12px;
        }

        .contact-info-box p {
            margin-bottom: 8px;
        }

        .contact-info-box strong {
            color: #1d1d1f;
        }

        .contact-info-box a {
            color: #1d1d1f;
            text-decoration: none;
            border-bottom: 1px solid #d2d2d7;
            transition: border-color 0.2s ease;
        }

        .contact-info-box a:hover {
            border-color: #1d1d1f;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #6e6e73;
            text-decoration: none;
            transition: color 0.2s ease;
            margin-bottom: 48px;
        }

        .back-link:hover {
            color: #1d1d1f;
        }

        @media (max-width: 734px) {
            .privacy-wrap {
                padding: 120px 20px 60px;
            }

            .privacy-header {
                margin-bottom: 48px;
            }

            .privacy-section {
                margin-bottom: 36px;
            }

            .contact-info-box {
                padding: 20px 24px;
            }
        }
