        /* [CSS identico al precedente - mantengo lo stesso styling] */
        :root {
            --primary: #097bc0;
            --primary-dark: #0a5a8a;
            --secondary: #2b4a72;
            --accent: #4fc3f7;
            --light: #fafbfc;
            --white: #ffffff;
            --text-dark: #1a2332;
            --text-light: #64748b;
            --border: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--light);
            overflow-x: hidden;
        }

        /* Header */
 

        

        

        

        

        

        

        

        

        .nav-dropdown {
            position: relative;
        }

        .dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
        }

        .dropdown-icon {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }

        .dropdown-trigger:hover .dropdown-icon,
        .nav-dropdown.active .dropdown-icon {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 0.5rem 0;
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1001;
            list-style: none;
            border: 1px solid var(--border);
        }

        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 0.8rem);
        }

        .dropdown-link {
            display: block;
            padding: 0.75rem 1.25rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
        }

        .dropdown-link:hover {
            background: var(--light);
            color: var(--primary);
            padding-left: 1.5rem;
        }

        

        

        

        

        .main-content {
            min-height: 100vh;
            padding-top: clamp(70px, 15vw, 80px);
        }

        .page-header {
            background: var(--gradient);
            color: white;
            padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 3vw, 1.5rem);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

/* Mobile Menu Button */








/* Mobile-only hidden by default */


/* Responsive Utilities */
@media (max-width: 768px) {
    

    

    

    

    /* Show and style Area Soci mobile */
    

    

    

    

    .cta-nav-mobile {
        display: block !important;
        background: var(--gradient) !important;
        color: white !important;
        padding: 0.75rem 1.5rem !important;
        border-radius: var(--radius) !important;
        margin-top: 1rem;
        text-align: center;
    }
}

/* Body offset when WIP banner is visible */
.wip-offset {
    margin-top: clamp(45px, 10vw, 55px) !important;
    transition: margin-top 0.3s ease;
}




        .privacy-content {
            max-width: clamp(320px, 90vw, 800px);
            margin: clamp(100px, 20vw, 120px) auto 0;
            padding: clamp(20px, 5vw, 40px) clamp(15px, 4vw, 20px);
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--secondary);
        }

        .privacy-content h1 {
            color: var(--secondary);
            margin-bottom: clamp(20px, 5vw, 30px);
            font-size: clamp(2rem, 6vw, 2.5rem);
            text-align: center;
            font-weight: 700;
        }

        .privacy-content h2 {
            color: var(--primary);
            margin-top: clamp(30px, 6vw, 40px);
            margin-bottom: clamp(15px, 3vw, 20px);
            font-size: clamp(1.3rem, 3.5vw, 1.5rem);
            border-bottom: 2px solid var(--primary);
            padding-bottom: clamp(8px, 2vw, 10px);
            font-weight: 600;
        }

        .privacy-content h3 {
            color: var(--secondary);
            margin-top: clamp(20px, 4vw, 30px);
            margin-bottom: clamp(10px, 2.5vw, 15px);
            font-size: clamp(1.1rem, 2.5vw, 1.2rem);
            font-weight: 600;
        }

        .privacy-content h4 {
            color: var(--text-dark);
            margin-top: clamp(15px, 3vw, 20px);
            margin-bottom: clamp(8px, 2vw, 10px);
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            font-weight: 500;
        }

        .privacy-content p {
            margin-bottom: clamp(12px, 3vw, 15px);
            text-align: justify;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .privacy-content ul {
            margin-bottom: clamp(12px, 3vw, 15px);
            padding-left: clamp(20px, 5vw, 30px);
        }

        .privacy-content li {
            margin-bottom: clamp(6px, 1.5vw, 8px);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .privacy-content a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .privacy-content a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .contact-box {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: clamp(20px, 5vw, 25px);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            margin: clamp(25px, 6vw, 30px) 0;
            box-shadow: var(--shadow);
        }

        .contact-box strong {
            color: var(--primary);
        }

        .last-updated {
            background: rgba(9, 123, 192, 0.1);
            padding: clamp(12px, 3vw, 15px);
            border-radius: 8px;
            margin-bottom: clamp(25px, 6vw, 30px);
            text-align: center;
            font-weight: 500;
            color: var(--primary);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .table-of-contents {
            background: #f9f9f9;
            padding: clamp(15px, 4vw, 20px);
            border-radius: 10px;
            margin: clamp(25px, 6vw, 30px) 0;
            border-left: 4px solid var(--primary);
        }

        .table-of-contents h3 {
            color: var(--primary);
            margin-bottom: clamp(12px, 3vw, 15px);
            margin-top: 0;
            font-size: clamp(1.1rem, 2.5vw, 1.2rem);
        }

        .table-of-contents ul {
            list-style: none;
            padding-left: 0;
        }

        .table-of-contents li {
            margin-bottom: clamp(6px, 1.5vw, 8px);
        }

        .table-of-contents a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .table-of-contents a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .back-to-top {
            position: fixed;
            bottom: clamp(15px, 4vw, 20px);
            right: clamp(15px, 4vw, 20px);
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: clamp(45px, 10vw, 50px);
            height: clamp(45px, 10vw, 50px);
            cursor: pointer;
            font-size: clamp(16px, 3.5vw, 18px);
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: none;
            z-index: 999;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .warning-box {
            background: #fef3c7;
            border: 2px solid var(--warning);
            padding: clamp(20px, 5vw, 25px);
            border-radius: var(--radius);
            margin: clamp(25px, 6vw, 30px) 0;
            box-shadow: var(--shadow);
        }

        .warning-box strong {
            color: #92400e;
        }

        .security-box {
            background: #f0fdf4;
            border: 2px solid var(--success);
            padding: clamp(20px, 5vw, 25px);
            border-radius: var(--radius);
            margin: clamp(25px, 6vw, 30px) 0;
            box-shadow: var(--shadow);
        }

        .security-box strong {
            color: #059669;
        }

        footer {
            background: var(--text-dark);
            color: white;
            padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1rem);
        }

        .footer-content {
            max-width: clamp(320px, 90vw, 1200px);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 40vw, 250px), 1fr));
            gap: clamp(1.5rem, 4vw, 2rem);
        }

        .footer-section h3 {
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            color: var(--accent);
            font-size: clamp(1.1rem, 2.5vw, 1.2rem);
        }

        .footer-section p {
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            font-size: clamp(0.9rem, 2vw, 1rem);
            opacity: 0.9;
        }

        .footer-section ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-section li {
            margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .footer-section a:hover {
            opacity: 1;
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: clamp(1.5rem, 4vw, 2rem);
            padding-top: clamp(0.8rem, 2vw, 1rem);
            text-align: center;
            opacity: 0.6;
            font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        }

        @media (max-width: 768px) {
            .privacy-content {
                padding: clamp(15px, 4vw, 20px) clamp(10px, 3vw, 15px);
                margin-top: clamp(80px, 15vw, 100px);
            }
            
              @media (max-width: 768px) {
            

            

            

            .nav-dropdown {
                width: 100%;
            }

            .dropdown-trigger {
                justify-content: space-between;
                width: 100%;
            }

            .dropdown-menu {
                position: static;
                transform: none;
                opacity: 0;
                max-height: 0;
                overflow: hidden;
                box-shadow: none;
                border: none;
                border-left: 3px solid var(--primary);
                padding: 0;
                margin-left: 1rem;
                background: var(--light);
                border-radius: 0;
                transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
            }

            .nav-dropdown.active .dropdown-menu {
                opacity: 1;
                max-height: 500px;
                padding: 0.5rem 0;
                margin-top: 0.5rem;
            }

            .dropdown-link {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .dropdown-link:hover {
                padding-left: 1.3rem;
            }

            

            .two-column {
                grid-template-columns: 1fr;
            }
        }
            
            .privacy-content h1 {
                font-size: clamp(1.8rem, 5vw, 2rem);
            }

            .table-of-contents {
                padding: clamp(12px, 3vw, 15px);
            }

            .contact-box {
                padding: clamp(15px, 4vw, 20px);
            }
        }

        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: clamp(1rem, 3vw, 1.5rem);
            }
        }
    
