:root { --grigio-antracite: #242526; --grigio-testo: #333333; --grigio-testo-chiaro: #606266; --verde-eco: #237d00; --verde-eco-hover: #36af07; --verde-eco-contrasto: #36af07; --bianco: #ffffff; --grigio-chiaro: #f5f5f5; --grigio-bordo: #e4e7ed; }
        body { font-family: 'Inter', sans-serif; margin: 0; padding: 0; color: var(--grigio-testo); line-height: 1.7; background-color: var(--grigio-chiaro); -webkit-font-smoothing: antialiased; }
        a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--verde-eco-contrasto); outline-offset: 3px; }
        .top-bar { background-color: var(--verde-eco); color: var(--bianco); display: flex; justify-content: center; align-items: center; padding: 8px 20px; font-size: 13px; letter-spacing: 0.5px; }
        .top-bar-content { display: flex; align-items: center; gap: 15px; }
        .top-bar a { color: var(--bianco); text-decoration: none; font-weight: 700; }
        .top-bar-divider { opacity: 0.5; font-size: 10px; }
        header { background-color: var(--grigio-antracite); padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--verde-eco); position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        header .site-logo { margin: 0; font-size: 22px; letter-spacing: 1px; color: var(--bianco); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
        header .site-logo-mark { width: 77px; height: auto; flex: 0 0 auto; display: block; }
        header .site-logo span { color: var(--verde-eco-contrasto); }
        nav { display: flex; gap: 35px; }
        nav a { color: var(--bianco); text-decoration: none; font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; position: relative; padding-bottom: 5px; transition: color 0.3s ease; }
        nav a:hover, nav a.active { color: var(--verde-eco-contrasto); }
        .page-banner { background-color: var(--grigio-antracite); padding: 80px 50px; text-align: center; color: var(--bianco); }
        .page-banner h1 { font-size: 42px; margin: 0; font-weight: 700; letter-spacing: -1px; }
        .page-banner p { color: var(--verde-eco-contrasto); font-size: 16px; text-transform: uppercase; letter-spacing: 2px; margin-top: 10px; font-weight: 600; }
        main { max-width: 980px; margin: 0 auto; padding: 70px 8%; background-color: var(--bianco); }
        h3 { color: var(--grigio-antracite); font-size: 25px; margin-top: 42px; margin-bottom: 12px; }
        h4 { color: var(--grigio-antracite); margin-top: 28px; margin-bottom: 8px; }
        p, li { color: var(--grigio-testo-chiaro); font-size: 15px; }
        ul { padding-left: 22px; }
        a { color: var(--verde-eco); }
        .note-box { background: var(--grigio-chiaro); border-left: 4px solid var(--verde-eco); padding: 18px 22px; margin: 24px 0; }
        .updated { font-size: 13px; color: #6b7280; margin-top: 0; }
        footer { background-color: var(--grigio-antracite); padding: 30px 20px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-logo { width: 300px; height: auto; margin-bottom: 15px; }
        .footer-info { color: #9ca3af; font-size: 13px; margin: 0 0 8px 0; }
        .footer-info a { color: #9ca3af; text-decoration: none; }
        .footer-legal { color: #6b7280; font-size: 11px; margin: 0; letter-spacing: 0.3px; }
        .footer-legal a { color: #6b7280; text-decoration: none; }
        @media (max-width: 768px) { header { flex-direction: column; text-align: center; padding: 20px; } nav { margin-top: 25px; flex-wrap: wrap; justify-content: center; gap: 15px; } .top-bar-content { flex-direction: column; gap: 5px; text-align: center; } .top-bar-divider { display: none; } .page-banner { padding: 55px 20px; } .page-banner h1 { font-size: 30px; } main { padding: 45px 7%; } }


        /* --- MENU MOBILE --- */
        .menu-toggle {
            display: none;
        }

        .menu-toggle-label {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 4px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle-label span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--bianco);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 16px 20px;
                position: sticky;
                top: 0;
            }

            header .site-logo {
                font-size: 18px;
                letter-spacing: 0.5px;
            }

            .menu-toggle-label {
                display: flex;
            }

            nav {
                display: none;
                position: absolute;
                left: 0;
                right: 0;
                top: 100%;
                background-color: var(--grigio-antracite);
                border-top: 1px solid rgba(255,255,255,0.08);
                border-bottom: 3px solid var(--verde-eco);
                padding: 12px 20px 18px 20px;
                margin-top: 0;
                box-shadow: 0 12px 24px rgba(0,0,0,0.18);
            }

            .menu-toggle:checked ~ nav {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            nav a {
                display: block;
                padding: 13px 0;
                font-size: 13px;
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }

            nav a:last-child {
                border-bottom: none;
            }

            .menu-toggle:checked + .menu-toggle-label span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .menu-toggle:checked + .menu-toggle-label span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle:checked + .menu-toggle-label span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .top-bar {
                font-size: 12px;
                padding: 9px 12px;
            }

            .top-bar-content {
                gap: 4px;
            }

            footer {
                padding: 28px 16px;
            }

            .footer-logo {
                width: 220px;
                max-width: 80%;
            }

            .footer-info {
                font-size: 12px;
                line-height: 1.6;
            }

            .footer-legal {
                font-size: 10px;
                line-height: 1.5;
            }
        }

        @media (max-width: 480px) {
            header .site-logo {
                font-size: 16px;
                gap: 8px;
            }

            header .site-logo-mark {
                width: 60px;
            }

            .menu-toggle-label {
                width: 40px;
                height: 40px;
            }

            .page-banner h1,
            .hero h1 {
                font-size: 30px;
                line-height: 1.18;
            }

            .page-banner p,
            .hero p {
                font-size: 15px;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                box-sizing: border-box;
                text-align: center;
            }
        }


        @media (max-width: 768px) {
            .privacy-container,
            .privacy-content {
                padding-left: 6%;
                padding-right: 6%;
            }

            .privacy-content h2,
            .privacy-content h3 {
                line-height: 1.25;
            }
        }


        /* --- FIX STEP 5B: TOP BAR MOBILE E FOOTER --- */
        footer,
        footer p,
        footer span,
        footer .footer-info,
        footer .footer-legal {
            color: #9ca3af;
        }

        footer a,
        footer a:visited,
        footer a:active {
            color: #9ca3af;
            text-decoration: none;
        }

        footer a:hover {
            color: var(--verde-eco-contrasto);
        }

        .footer-legal a,
        .footer-legal a:visited,
        .footer-legal a:active {
            color: #6b7280;
            text-decoration: none;
        }

        .footer-legal a:hover {
            color: var(--verde-eco-contrasto);
        }

        @media (max-width: 768px) {
            .top-bar {
                padding: 10px 14px;
            }

            .top-bar-content {
                width: 100%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                align-items: start;
                gap: 12px;
                text-align: center;
            }

            .top-bar-title,
            .top-bar-divider {
                display: none !important;
            }

            .top-bar-content > span:not(.top-bar-title):not(.top-bar-divider) {
                display: block;
                line-height: 1.35;
                font-size: 13px;
                font-weight: 500;
                min-width: 0;
            }

            .top-bar-content > span:not(.top-bar-title):not(.top-bar-divider) a {
                display: block;
                margin-top: 3px;
                font-size: 13px;
                font-weight: 700;
                white-space: nowrap;
            }
        }

        @media (max-width: 390px) {
            .top-bar {
                padding: 9px 10px;
            }

            .top-bar-content {
                gap: 8px;
            }

            .top-bar-content > span:not(.top-bar-title):not(.top-bar-divider),
            .top-bar-content > span:not(.top-bar-title):not(.top-bar-divider) a {
                font-size: 12px;
            }
        }
