        /* BASE & RESET: INIZIO FILE */
        :root {
            --bg: #F5ECD7;
            --surface: #FFFFFF;
            --accent: #8B3520;
            --text-main: #5b3a29;
            --text-mut: rgba(80, 40, 20, 0.8);
            --border: rgba(139, 53, 32, 0.15);
            --radius: 12px;
        }

        @font-face {
            font-family: 'Baloo 2';
            src: url('font-baloo2/baloo2-variablefont-wght.ttf') format('truetype');
            font-weight: 400 800;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            font-size: 100%;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            font-size: 1em;
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        /* NAVBAR */
        .navbar {
            position: sticky;
            top: 0;
            width: 100%;
            height: 72px;
            padding: 0 40px;
            background: rgba(245, 236, 215, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .btn-back {
            font-size: 0.875em;
            font-weight: 600;
            color: var(--text-main);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.2s;
        }

        .btn-back:hover {
            color: var(--accent);
        }

        /* HEADER */
        .policy-header {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 40px 40px;
            text-align: center;
        }

        .policy-header h1 {
            font-family: 'Baloo 2', sans-serif;
            font-size: clamp(2em, 5vw, 3.2em);
            color: var(--text-main);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .policy-header p {
            font-size: 1.125em;
            color: var(--text-mut);
            margin: 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* LAYOUT MAIN */
        .layout-main {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 40px 100px;
        }

        /* TOC BOX */
        .toc-box {
            background: var(--surface);
            padding: 28px;
            border-radius: 12px;
            border: 1px solid var(--border);
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .toc-title {
            font-size: 0.8125em;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .toc-nav {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }

        .toc-nav a {
            text-decoration: none;
            color: var(--text-mut);
            font-size: 1em;
            padding: 6px 0;
            transition: color 0.2s;
        }

        .toc-nav a:hover {
            color: var(--accent);
        }

        /* CONTENT SECTIONS */
        .content {
            line-height: 1.8;
        }

        .content-section {
            margin-bottom: 48px;
            scroll-margin-top: 100px;
        }

        .content-section h2 {
            font-family: 'Baloo 2', sans-serif;
            font-size: 1.75em;
            color: var(--text-main);
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent);
        }

        .content-section p {
            margin-bottom: 16px;
            color: var(--text-mut);
            font-size: 1.125em;
            line-height: 1.75;
        }

        .content-section ul {
            list-style: none;
            margin-bottom: 24px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 20px 24px;
        }

        .content-section li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            color: var(--text-mut);
            font-size: 1.125em;
            line-height: 1.6;
        }

        .content-section li:last-child {
            margin-bottom: 0;
        }

        .content-section li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 600;
        }

        .highlight-card {
            background: var(--surface);
            border-left: 4px solid var(--accent);
            padding: 20px 24px;
            border-radius: 6px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            margin: 28px 0;
        }

        .highlight-card p {
            margin: 0;
            color: var(--text-main);
            font-weight: 500;
            font-size: 1.125em;
            line-height: 1.6;
        }

        .update-badge {
            display: inline-block;
            font-size: 0.8125em;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            color: var(--text-mut);
            padding: 8px 14px;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--surface);
        }

        .footer-update {
            text-align: center;
            margin-bottom: 20px;
        }

        .footer {
            background: linear-gradient(90deg, #4a1209 0%, #641811 25%, #8B3520 50%, #641811 75%, #4a1209 100%);
            color: #fcfaf8;
            border-top: 1px solid rgba(230, 184, 128, 0.2);
            padding: 40px 20px;
        }

        .footer-inner {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            text-align: center;
        }

        .footer-logo {
            width: 80px;
            height: auto;
            display: block;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 22px;
        }

        .footer-nav a {
            color: #fcfaf8;
            text-decoration: none;
            font-size: 1em;
            font-weight: 600;
        }

        .footer-nav a:hover {
            color: #e6b880;
        }

        .footer-socials {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 18px;
        }

        .footer-social-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fcfaf8;
            text-decoration: none;
            font-size: 1em;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-social-link svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .footer-social-link:hover {
            color: #e6b880;
        }

        .footer-copy p {
            margin: 0;
            color: rgba(252, 250, 248, 0.75);
            font-size: 0.875em;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            html {
                font-size: 112.5%;
            }

            .navbar {
                padding: 0 20px;
                height: auto;
                min-height: 64px;
                flex-wrap: wrap;
                align-content: center;
                gap: 12px;
            }

            .nav-logo img {
                height: 36px;
            }

            .btn-back {
                width: 100%;
                text-align: right;
            }

            .policy-header {
                padding: 60px 20px 30px;
            }

            .layout-main {
                padding: 30px 20px 80px;
            }

            .toc-box {
                padding: 20px;
                margin-bottom: 30px;
            }

            .toc-nav {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .content-section ul {
                padding: 16px 20px;
            }

            .highlight-card {
                padding: 16px 20px;
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 125%;
            }

            .navbar {
                padding: 0 14px;
                min-height: 60px;
            }

            .nav-logo img {
                height: 32px;
            }

            .policy-header {
                padding: 40px 14px 20px;
            }

            .layout-main {
                padding: 20px 14px 60px;
            }

            .toc-box {
                padding: 16px;
                margin-bottom: 24px;
            }

            .toc-nav {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .content-section {
                margin-bottom: 36px;
            }

            .content-section h2 {
                margin-bottom: 12px;
            }

            .content-section p {
                margin-bottom: 12px;
            }

            .content-section ul {
                padding: 12px 16px;
            }

            .content-section li {
                margin-bottom: 8px;
                padding-left: 18px;
            }

            .highlight-card {
                padding: 12px 16px;
                margin: 20px 0;
            }
        }

        /* BASE & RESET: FINE FILE */