        :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.7;
            color: var(--text-dark);
            background: var(--light);
        }
      
        /* Header */
        /* Menu Desktop */
        /* Mobile Menu Button */
        /* Nascondi Area Soci mobile su desktop */
        /* Stile pulsante Area Soci mobile */
        /* Page Styles */
        .condition {
            background: var(--gradient);
            color: white;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .condition img {
            height: 60px;
            margin-bottom: 1rem;
            filter: brightness(0) invert(1);
        }

        .condition h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 0.5rem;
        }

        .condition p {
            opacity: 0.9;
            font-size: clamp(1rem, 2vw, 1.1rem);
        }

        .container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }

        .document {
            background: white;
            border-radius: var(--radius);
            padding: clamp(2rem, 5vw, 3rem);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
        }

        .info-box {
            background: #e0f2fe;
            border-left: 4px solid var(--primary);
            padding: 1.25rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .info-box.warning {
            background: #fef3c7;
            border-left-color: var(--warning);
        }

        .info-box h3 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .info-box p {
            margin: 0;
            color: var(--text-dark);
        }

        .toc {
            background: #f8fafc;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .toc h2 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .toc ul {
            list-style: none;
        }

        .toc li {
            margin: 0.5rem 0;
        }

        .toc a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

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

        section {
            margin: 3rem 0;
            scroll-margin-top: 2rem;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            color: var(--primary-dark);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }

        h3 {
            font-size: 1.25rem;
            color: var(--secondary);
            margin: 1.5rem 0 0.75rem;
        }

        p {
            margin: 1rem 0;
            text-align: justify;
        }

        ul, ol {
            margin: 1rem 0;
            padding-left: 2rem;
        }

        li {
            margin: 0.5rem 0;
        }

        strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        .highlight {
            background: #fef3c7;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-weight: 500;
        }

        .article-number {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-weight: 600;
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }

        .btn {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 0.9rem 1.8rem;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow);
            margin: 0.5rem;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        footer {
            background: var(--text-dark);
            color: white;
            padding: 2rem 1.5rem 1rem;
            margin-top: 4rem;
            text-align: center;
        }

        footer p {
            margin: 0.5rem 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }

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

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

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: var(--shadow-lg);
        }

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

        .print-hide {
            display: block;
        }

        @media print {
            .print-hide {
                display: none !important;
            }
            
            body {
                background: white;
            }
            
            .document {
                box-shadow: none;
                border: none;
            }
}

        /* Responsive Mobile */
        @media (max-width: 768px) {
            /* Nascondi pulsante desktop */
            /* ✅ Mostra e stilizza Area Soci mobile */
            .container {
                padding: 0 1rem;
            }

            .document {
                padding: 1.5rem;
            }

            h2 {
                font-size: 1.5rem;
            }
}
