
        /* ============================================
           RESET & VARIABILI
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --verde-primario: #269B35;
            --blu-cotral: #3A6BB3;
            --blu-astral: #002741;
            --sfondo-chiaro: #F5F7FB;
            --bianco: #FFFFFF;
            --testo-principale: #1F2933;
            --testo-secondario: #6B7280;
            --accento-giallo: #FFC857;
        }

        body {
            font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--testo-principale);
            background-color: var(--sfondo-chiaro);
            line-height: 1.6;
            font-size: 16px;
        }

        /* ============================================
           HEADER - DESKTOP
           ============================================ */
        header {
            background-color: var(--blu-astral);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-row {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
        }

        .header-row-top {
            background-color: var(--blu-astral);
            padding: 0.75rem 1rem;
        }

        .header-row-middle {
            background-color: var(--blu-cotral);
            background-image: url('../../bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 0.75rem 1rem;
            max-width: 100%;
            width: 100%;
        }

        .header-row-middle .header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-row-middle .header-logo-main {
            flex: 1;
            width: auto;
        }

        .header-row-middle .header-logo-coes {
            display: none;
        }

        .header-row-bottom {
            background-color: #269B35;
            max-width: 100%;
            width: 100%;
        }

        .header-row-bottom .header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-row-bottom #mainNavDesktop {
            flex: 1;
        }

        .header-logos-top {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            flex: 1;
        }

        .header-logo-main-top {
            display: none;
            height: 30px;
            align-items: center;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .header-logo-main-top:hover {
            opacity: 0.8;
        }

        .header-logo-main-top img {
            height: 100%;
            width: auto;
            max-width: 150px;
            object-fit: contain;
        }

        .header-logo-astral {
            height: 40px;
            display: flex;
            align-items: center;
            width: auto;
            transition: opacity 0.3s ease;
            text-decoration: none;
        }

        .header-logo-astral:hover {
            opacity: 0.8;
        }

        .header-logo-astral img {
            height: 100%;
            width: auto;
            max-width: 150px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .header-logo-coes {
            height: 40px;
            display: flex;
            align-items: center;
            width: auto;
            margin-left: auto;
            flex-shrink: 0;
            background-color: rgba(0, 0, 0, 0.4);
        }

        .header-logo-coes-menu {
            display: none;
        }

        .header-logo-coes img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .header-logo-main {
            height: 60px;
            display: flex;
            align-items: center;
            width: auto;
        }

        .header-logo-main img {
            height: 100%;
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        /* Menu Desktop */
        .menu-toggle {
            display: none;
        }

        /* Menu Desktop */
        #mainNavDesktop {
            display: flex;
        }

        /* Menu Mobile dentro overlay */
        #mainNav {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background-color: var(--bianco);
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            overflow-y: auto;
            padding: 2rem 1.5rem;
            flex-direction: column;
        }

        #mainNav.active {
            display: flex;
        }

        .menu-close {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--bianco);
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.5rem;
            min-width: 44px;
            min-height: 44px;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 50%;
            z-index: 1002;
        }

        .menu-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .nav-list {
            list-style: none;
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
        }

        .nav-list li {
            margin-bottom: 1rem;
        }

        .nav-list a {
            color: var(--bianco);
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 0.75rem;
            border-radius: 4px;
            transition: background-color 0.3s;
            text-transform: uppercase;
        }

        .nav-list a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .nav-list a.active {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle {
            color: var(--bianco);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            padding: 0.75rem;
            border-radius: 4px;
            transition: background-color 0.3s;
            cursor: pointer;
            gap: 0.5rem;
            text-transform: uppercase;
        }

        .nav-dropdown-toggle::after {
            content: '▼';
            font-size: 0.7rem;
            transition: transform 0.3s;
        }

        .nav-dropdown.active .nav-dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .nav-dropdown-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .nav-dropdown-menu {
            display: none;
            list-style: none;
            margin-top: 0.5rem;
            padding-left: 1rem;
        }

        .nav-dropdown.active .nav-dropdown-menu {
            display: block;
        }

        .nav-dropdown-menu li {
            margin-bottom: 0.5rem;
        }

        .nav-dropdown-menu a {
            color: var(--bianco);
            text-decoration: none;
            font-weight: 400;
            display: block;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: background-color 0.3s;
            opacity: 0.9;
            text-transform: uppercase;
        }

        .nav-dropdown-menu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            opacity: 1;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        .overlay.active {
            display: block;
        }

        /* ============================================
           MOBILE STYLES - COMPLETAMENTE RISCRITTO
           ============================================ */
        @media (max-width: 767px) {
            /* Hero Map Mobile */
            .hero .hero-map {
                min-height: 400px;
                height: 300px;
                margin-top: 2rem;
            }

            .udr-badge {
                top: 0.5rem;
                right: 0.5rem;
                padding: 0.6rem 1rem;
                max-width: calc(100% - 1rem);
            }

            .udr-badge-name {
                font-size: 0.85rem;
            }

            .udr-badge-close {
                width: 20px;
                height: 20px;
                font-size: 1.2rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            /* Header Mobile - Unificato */
            .header-row-top {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0.6rem 0.8rem;
                gap: 0.6rem;
                width: 100%;
                min-height: 60px;
                position: relative;
                border-bottom: 12px solid #269D49;
            }

            .header-logos-top {
                display: flex;
                align-items: center;
                gap: clamp(0.5rem, 2.5vw, 1rem);
                flex: 1;
                min-width: 0;
                justify-content: flex-start;
                flex-wrap: nowrap;
            }

            /* Loghi Responsivi - Prima riga mobile */
            .header-row-top .header-logo-astral {
                flex: 0 0 auto;
                height: clamp(28px, 5.5vw, 40px);
                width: auto;
                display: flex;
                align-items: center;
                margin: 0;
                max-width: calc(50% - 0.4rem);
            }

            .header-row-top .header-logo-astral img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                object-position: center;
            }

            .header-row-middle {
                display: block;
                padding: 0.6rem 0.8rem;
            }

            .header-row-middle .header-logo-main {
                display: flex;
                justify-content: center;
                align-items: center;
                height: clamp(40px, 8vw, 60px);
                margin: 0 auto;
                max-width: 100%;
            }

            .header-row-middle .header-logo-main {
                display: none;
            }

            .header-row-middle .header-logo-coes {
                display: flex;
                justify-content: center;
                align-items: center;
                height: clamp(40px, 8vw, 60px);
                margin: 0 auto;
                max-width: 100%;
                padding: 0 1rem;
            }

            .header-row-middle .header-logo-coes img {
                height: 100%;
                width: auto;
                max-width: 100%;
                object-fit: contain;
                object-position: center;
            }

            .header-row-top .header-logo-main {
                display: flex;
                flex: 0 0 auto;
                height: clamp(40px, 5.5vw, 40px);
                width: auto;
                align-items: center;
                margin: 0;
                max-width: calc(50% - 0.4rem);
            }

            .header-row-top .header-logo-main img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                object-position: center;
            }

            .header-row-top .header-logo-coes {
                display: none;
            }

            .header-row-bottom {
                display: none !important;
            }

            /* Hamburger Menu Button */
            .menu-toggle {
                display: flex !important;
                background: rgba(255, 255, 255, 0.12);
                border: none;
                border-radius: 10px;
                padding: 0.6rem;
                min-width: 48px;
                min-height: 48px;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                margin-left: auto;
                flex-shrink: 0;
            }

            .menu-toggle:hover,
            .menu-toggle:active {
                background: rgba(255, 255, 255, 0.2);
                transform: scale(1.05);
            }

            .menu-toggle span {
                display: block;
                width: 26px;
                height: 3px;
                background-color: var(--bianco);
                border-radius: 3px;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
            }

            .menu-toggle span::before,
            .menu-toggle span::after {
                content: '';
                position: absolute;
                width: 26px;
                height: 3px;
                background-color: var(--bianco);
                border-radius: 3px;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                left: 0;
            }

            .menu-toggle span::before {
                top: -9px;
            }

            .menu-toggle span::after {
                bottom: -9px;
            }

            .menu-toggle.active span {
                background-color: transparent;
            }

            .menu-toggle.active span::before {
                top: 0;
                transform: rotate(45deg);
            }

            .menu-toggle.active span::after {
                bottom: 0;
                transform: rotate(-45deg);
            }

            /* Nascondi menu desktop su mobile */
            #mainNavDesktop {
                display: none !important;
            }

            /* Side Menu dentro overlay */
            #mainNav {
                display: flex !important;
                position: fixed !important;
                top: 0 !important;
                right: -100%;
                width: 88% !important;
                max-width: 340px !important;
                height: 100vh !important;
                background: linear-gradient(180deg, #002741 0%, rgba(0, 39, 65, 0.98) 100%) !important;
                backdrop-filter: blur(25px);
                box-shadow: -6px 0 30px rgba(0, 0, 0, 0.4);
                z-index: 1002 !important;
                overflow-y: auto !important;
                padding: 0 !important;
                flex-direction: column !important;
                transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: visible !important;
            }

            #mainNav.active {
                right: 0 !important;
                display: flex !important;
            }

            /* Overlay attivo mostra il menu */
            .overlay.active {
                opacity: 1 !important;
                visibility: visible !important;
            }

            .overlay.active #mainNav {
                right: 0 !important;
                display: flex !important;
            }

            #mainNav .menu-close {
                display: flex !important;
                background: rgba(255, 255, 255, 0.15);
                top: 1.2rem;
                right: 1.2rem;
                position: absolute !important;
                z-index: 1003 !important;
            }

            .menu-close:hover {
                background: rgba(255, 255, 255, 0.25);
            }

            /* Navigation List Mobile */
            #mainNav .nav-list {
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 0.6rem;
                margin-top: 5rem !important;
                width: 100% !important;
                list-style: none !important;
                padding: 1.5rem 1.2rem !important;
                visibility: visible !important;
                opacity: 1 !important;
            }

            #mainNav .nav-list li {
                margin-bottom: 0 !important;
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
            }

            #mainNav .nav-list a {
                display: flex !important;
                flex-direction: row !important;
                align-items: center !important;
                gap: 1.1rem;
                padding: 1.1rem 1.4rem !important;
                text-transform: uppercase !important;
                font-size: 1.05rem !important;
                color: #FFFFFF !important;
                text-align: left !important;
                text-decoration: none !important;
                border-radius: 14px;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                background: rgba(255, 255, 255, 0.1) !important;
                font-weight: 500 !important;
                visibility: visible !important;
                opacity: 1 !important;
                min-height: 48px !important;
            }

            #mainNav .nav-list a::before {
                font-size: 1.6rem;
                margin: 0;
                line-height: 1;
                transition: transform 0.3s ease;
                flex-shrink: 0;
                display: inline-block !important;
                visibility: visible !important;
            }

            #mainNav .nav-list a[href*="abbonamenti"]::before {
                content: '💳';
            }

            #mainNav .nav-list a[href*="servizio-chiamata"]::before {
                content: '📞';
            }

            #mainNav .nav-list a[href*="documenti"]::before {
                content: '📄';
            }

            #mainNav .nav-list a[href*="faq"]::before {
                content: '❓';
            }

            #mainNav .nav-list a[href*="contatti"]::before {
                content: '✉️';
            }

            #mainNav .nav-list a[href*="aggiornamenti"]::before {
                content: '📢';
            }

            #mainNav .nav-list a.nav-home::before {
                content: '🏠';
            }

            #mainNav .nav-list a:hover {
                background: rgba(255, 255, 255, 0.18);
                transform: translateX(6px);
                color: #FFFFFF !important;
            }

            #mainNav .nav-list a:hover::before {
                transform: scale(1.15);
            }

            #mainNav .nav-list a.active {
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.12) 100%);
                font-weight: 600;
                border-left: 5px solid #FFFFFF;
                padding-left: calc(1.4rem - 5px);
                color: #FFFFFF !important;
            }

            /* Dropdown Mobile */
            #mainNav .nav-dropdown {
                margin-bottom: 0;
                display: block !important;
            }

            #mainNav .nav-dropdown-toggle {
                display: flex !important;
                flex-direction: row !important;
                align-items: center !important;
                gap: 1.1rem;
                padding: 1.1rem 1.4rem !important;
                font-size: 1.05rem !important;
                color: #FFFFFF !important;
                text-align: left !important;
                border-radius: 14px;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                background: rgba(255, 255, 255, 0.1) !important;
                font-weight: 500 !important;
                width: 100% !important;
                cursor: pointer !important;
                visibility: visible !important;
                opacity: 1 !important;
                min-height: 48px !important;
                text-transform: uppercase !important;
            }

            #mainNav .nav-dropdown-toggle::before {
                content: '🗺️';
                font-size: 1.6rem;
                margin: 0;
                line-height: 1;
                transition: transform 0.3s ease;
                flex-shrink: 0;
                display: inline-block !important;
                visibility: visible !important;
            }

            #mainNav .nav-dropdown-toggle::after {
                content: '▼';
                font-size: 0.75rem;
                margin-left: auto;
                transition: transform 0.3s ease;
                color: #FFFFFF !important;
            }

            #mainNav .nav-dropdown-toggle:hover {
                background: rgba(255, 255, 255, 0.18);
                transform: translateX(6px);
                color: #FFFFFF !important;
            }

            #mainNav .nav-dropdown.active .nav-dropdown-toggle {
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.12) 100%);
                border-left: 5px solid #FFFFFF;
                padding-left: calc(1.4rem - 5px);
                color: #FFFFFF !important;
            }

            #mainNav .nav-dropdown.active .nav-dropdown-toggle::after {
                transform: rotate(180deg);
                color: #FFFFFF !important;
            }

            #mainNav .nav-dropdown-menu {
                position: static;
                background: rgba(0, 0, 0, 0.25);
                padding: 0.6rem 0;
                margin-top: 0.6rem;
                margin-left: 1.4rem;
                border-radius: 10px;
                box-shadow: none;
                display: none;
                animation: none;
                border: none;
            }

            #mainNav .nav-dropdown.active .nav-dropdown-menu {
                display: block !important;
            }

            #mainNav .nav-dropdown-menu li {
                margin-bottom: 0.3rem;
                display: block !important;
            }

            #mainNav .nav-dropdown-menu a {
                padding: 0.85rem 1.1rem;
                font-size: 0.95rem;
                display: block !important;
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.06);
                text-transform: uppercase !important;
                color: #FFFFFF !important;
                text-decoration: none;
                font-weight: 400;
                visibility: visible !important;
                opacity: 1 !important;
            }

            #mainNav .nav-dropdown-menu a::before {
                display: none;
            }

            #mainNav .nav-dropdown-menu a:hover {
                background: rgba(255, 255, 255, 0.12);
            }

            /* Overlay Mobile */
            .overlay {
                display: block !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                background-color: rgba(0, 0, 0, 0.6) !important;
                z-index: 1000 !important;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .overlay.active {
                opacity: 1 !important;
                visibility: visible !important;
            }

            /* Body & Main Mobile */
            html, body {
                padding-bottom: 0;
                margin: 0;
            }

            main {
                padding-bottom: 2rem;
                margin-bottom: 0;
            }
        }

        /* ============================================
           CONTENUTI COMUNI
           ============================================ */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        section {
            margin-bottom: 3rem;
            padding: 2rem 0;
        }

        /* Scroll offset per sezioni con anchor links - compensa navbar sticky */
        section[id] {
            scroll-margin-top: 80px;
        }

        h1 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--testo-principale);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--testo-principale);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--testo-principale);
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--testo-principale);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--blu-cotral) 0%, var(--verde-primario) 100%);
            color: var(--bianco);
            padding: 3rem 1rem;
            border-radius: 0;
            margin: 0 -1rem 3rem;
            text-align: center;
        }

        .hero h1 {
            color: var(--bianco);
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

        .hero .subtitle {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .hero .payoff {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            min-height: 44px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--bianco);
            color: var(--blu-cotral);
        }

        .btn-primary:hover {
            background-color: var(--sfondo-chiaro);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

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

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .hero-credit {
            font-size: 0.875rem;
            margin-top: 2rem;
            opacity: 0.9;
        }

        /* Cards */
        /* Sezione Abbonamenti */
        #abbonamenti {
            background: linear-gradient(135deg, var(--bianco) 0%, var(--sfondo-chiaro) 100%);
            padding: 3rem 1rem;
            margin: 2rem -1rem;
            border-radius: 0;
        }

        #abbonamenti h2 {
            text-align: center;
            color: var(--blu-cotral);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        #abbonamenti > p {
            text-align: center;
            color: var(--testo-secondario);
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 1.5rem;
            line-height: 1.6;
        }

        #abbonamenti h3 {
            text-align: center;
            color: var(--blu-cotral);
            font-size: 1.5rem;
            font-weight: 700;
            margin: 2rem 0 1.5rem;
        }

        #abbonamenti ul {
            max-width: 700px;
            margin: 1.5rem auto;
            padding-left: 1.5rem;
            color: var(--testo-principale);
            line-height: 1.8;
        }

        #abbonamenti ul li {
            margin-bottom: 0.75rem;
        }

        .card {
            background-color: var(--bianco);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(58, 107, 179, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blu-cotral) 0%, var(--verde-primario) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border-color: var(--blu-cotral);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card h3 {
            color: var(--blu-cotral);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .card p {
            color: var(--testo-secondario);
            line-height: 1.7;
            font-size: 1rem;
        }

        #abbonamenti > div[style*="text-align: center"] {
            max-width: 600px;
            margin: 2.5rem auto 0;
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background-color: var(--sfondo-chiaro);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 2rem 0;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .card ul {
            list-style-position: inside;
            margin-top: 1rem;
        }

        .card ul li {
            margin-bottom: 0.5rem;
            color: var(--testo-secondario);
        }

        /* Highlight Box */
        .highlight-box {
            background-color: var(--verde-primario);
            color: var(--bianco);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Video UDR Container */
        .udr-video-container {
            margin: 2.5rem 0;
            max-width: 100%;
            position: relative;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .udr-video {
            width: 100%;
            height: auto;
            display: block;
            max-width: 100%;
        }

        .udr-video-container p {
            padding: 2rem;
            text-align: center;
            color: var(--testo-secondario);
            background: var(--sfondo-chiaro);
            margin: 0;
        }

        .udr-video-container a {
            color: var(--blu-cotral);
            text-decoration: underline;
        }

        .udr-video-container a:hover {
            color: var(--verde-primario);
        }

        /* UDR Selector Section */
        /* Sezione Come Funziona */
        #come-funziona {
            background: linear-gradient(135deg, var(--sfondo-chiaro) 0%, #e8f0f8 100%);
            padding: 3rem 1rem;
            margin: 2rem -1rem;
            border-radius: 0;
        }

        #come-funziona h2 {
            text-align: center;
            color: var(--blu-cotral);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        #come-funziona > p {
            text-align: center;
            color: var(--testo-secondario);
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        .udr-section-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .udr-selector-section {
            background-color: var(--bianco);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(58, 107, 179, 0.1);
        }

        .udr-selector-section label {
            color: var(--testo-principale);
            font-size: 1rem;
        }

        .udr-select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            background-color: var(--bianco);
            color: var(--testo-principale);
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
            border-radius: 6px;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            background-color: var(--bianco);
            min-height: 44px;
        }

        .udr-select:hover {
            border-color: #cbd5e1;
        }

        .udr-select:focus {
            outline: none;
            border-color: var(--blu-cotral);
            box-shadow: 0 0 0 3px rgba(58, 107, 179, 0.1);
            background-color: #fafbfc;
        }

        .udr-card {
            background-color: var(--sfondo-chiaro);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 1.5rem;
            border: 1px solid rgba(58, 107, 179, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .udr-card h3 {
            color: var(--blu-cotral);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .udr-card p {
            color: var(--testo-secondario);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .udr-card ul {
            list-style: none;
            margin-top: 1rem;
            padding: 0;
        }

        .udr-card ul li {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .udr-card ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--verde-primario);
            font-weight: bold;
        }

        .udr-card a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--verde-primario);
            text-decoration: none;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            background-color: rgba(38, 157, 73, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .udr-card a:hover {
            background-color: var(--verde-primario);
            color: var(--bianco);
            transform: translateX(4px);
        }

        .udr-card a::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .udr-card a:hover::after {
            transform: translateX(4px);
        }

        /* Map Placeholder */
        .map-placeholder {
            width: 100%;
            height: 250px;
            background-color: var(--sfondo-chiaro);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--testo-secondario);
            margin-bottom: 2rem;
            border: 2px dashed var(--testo-secondario);
        }

        /* Interactive UDR Map */
        .udr-interactive-map {
            width: 100%;
            min-height: 400px;
            background-color: var(--bianco);
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid var(--sfondo-chiaro);
            position: relative;
            overflow: hidden;
        }

        .udr-interactive-map svg {
            width: 100%;
            height: auto;
            display: block;
        }

        .udr-interactive-map .map-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--testo-secondario);
            font-size: 1rem;
            z-index: 1;
        }

        .udr-interactive-map .map-error {
            padding: 2rem;
            text-align: center;
            color: var(--testo-secondario);
        }

        /* UDR Path Interactions */
        /* UDR: Default state - Mantieni colori originali */
        .udr-interactive-map path[data-udr-id] {
            transition: opacity 0.3s ease;
            cursor: pointer;
            stroke-linejoin: round;
            stroke-linecap: round;
        }

        /* UDR ATTIVE: Mostra normale con colori originali */
        .udr-interactive-map path[data-udr-id].udr-path-active {
            opacity: 1 !important;
            filter: none !important;
        }

        /* Hover su UDR ATTIVE */
        .udr-interactive-map path[data-udr-id].udr-path-active:hover {
            opacity: 1 !important;
            filter: none !important;
        }

        /* UDR INATTIVE: Solo trasparenza */
        .udr-interactive-map path[data-udr-id].udr-path-inactive {
            opacity: 0.4 !important;
            filter: none !important;
        }

        /* Hover su UDR INATTIVE */
        .udr-interactive-map path[data-udr-id].udr-path-inactive:hover {
            opacity: 0.6 !important;
            filter: none !important;
        }

        /* UDR SELEZIONATA */
        .udr-interactive-map path[data-udr-id].udr-selected {
            opacity: 1 !important;
            filter: none !important;
        }

        /* Stile per l'icona di check overlay nella mappa */
        .udr-check-marker {
            pointer-events: none;
            font-family: system-ui, -apple-system, sans-serif;
            font-weight: bold;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
            user-select: none;
        }

        /* Status Badges */
        .udr-status-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .udr-status-badge.active {
            background-color: rgba(38, 157, 73, 0.15);
            color: #1e7a2a;
            border: 1px solid rgba(38, 157, 73, 0.3);
        }

        .udr-status-badge.inactive {
            background-color: rgba(107, 114, 128, 0.1);
            color: #4b5563;
            border: 1px solid rgba(107, 114, 128, 0.3);
        }

        /* Steps */
        /* Sezione Servizio a Chiamata */
        #servizio-chiamata {
            background: linear-gradient(135deg, var(--bianco) 0%, var(--sfondo-chiaro) 100%);
            padding: 3rem 1rem;
            margin: 2rem -1rem;
            border-radius: 0;
        }

        #servizio-chiamata h2 {
            text-align: center;
            color: var(--blu-cotral);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        #servizio-chiamata > p {
            text-align: center;
            color: var(--testo-secondario);
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        #servizio-chiamata h3 {
            text-align: center;
            color: var(--blu-cotral);
            font-size: 1.5rem;
            font-weight: 700;
            margin: 2.5rem 0 1.5rem;
        }

        #servizio-chiamata ul {
            max-width: 700px;
            margin: 1.5rem auto;
            padding-left: 1.5rem;
            color: var(--testo-principale);
            line-height: 1.8;
        }

        #servizio-chiamata ul li {
            margin-bottom: 0.75rem;
        }

        .steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .step-card {
            background-color: var(--bianco);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(58, 107, 179, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blu-cotral) 0%, var(--verde-primario) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border-color: var(--blu-cotral);
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--blu-cotral) 0%, var(--verde-primario) 100%);
            color: var(--bianco);
            border-radius: 50%;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            box-shadow: 0 4px 12px rgba(58, 107, 179, 0.3);
            transition: all 0.3s ease;
        }

        .step-card:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(58, 107, 179, 0.4);
        }

        .step-card h3 {
            color: var(--blu-cotral);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .step-card p {
            color: var(--testo-secondario);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        #servizio-chiamata > div[style*="text-align: center"] {
            max-width: 600px;
            margin: 2.5rem auto 0;
        }

        .step-number {
            display: inline-block;
            width: 32px;
            height: 32px;
            background-color: var(--blu-cotral);
            color: var(--bianco);
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Document Filters */
        /* Sezione Documenti */
        #documenti {
            background: linear-gradient(135deg, var(--sfondo-chiaro) 0%, #e8f0f8 100%);
            padding: 3rem 1rem;
            margin: 2rem -1rem;
            border-radius: 0;
        }

        #documenti h2 {
            text-align: center;
            color: var(--blu-cotral);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        #documenti > p {
            text-align: center;
            color: var(--testo-secondario);
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        .doc-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 0 auto 2.5rem;
            justify-content: center;
            max-width: 900px;
        }

        .filter-btn {
            padding: 0.75rem 1.5rem;
            background-color: var(--bianco);
            border: 2px solid #e5e7eb;
            border-radius: 24px;
            color: var(--testo-principale);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-height: 44px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .filter-btn:hover {
            background-color: var(--blu-cotral);
            color: var(--bianco);
            border-color: var(--blu-cotral);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(58, 107, 179, 0.2);
        }

        .filter-btn.active {
            background-color: var(--blu-cotral);
            color: var(--bianco);
            border-color: var(--blu-cotral);
            box-shadow: 0 4px 12px rgba(58, 107, 179, 0.3);
        }

        .doc-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .doc-card {
            background-color: var(--bianco);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(58, 107, 179, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .doc-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blu-cotral) 0%, var(--verde-primario) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .doc-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border-color: var(--blu-cotral);
        }

        .doc-card:hover::before {
            transform: scaleX(1);
        }

        .doc-card h3 {
            color: var(--blu-cotral);
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .doc-card p {
            color: var(--testo-secondario);
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .doc-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--verde-primario);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.75rem 1.5rem;
            background-color: rgba(38, 157, 73, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .doc-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .doc-link:hover {
            background-color: var(--verde-primario);
            color: var(--bianco);
            transform: translateX(4px);
        }

        .doc-link:hover::after {
            transform: translateX(4px);
        }

        /* FAQ Accordion */
        /* Sezione FAQ */
        #faq {
            background: linear-gradient(135deg, var(--sfondo-chiaro) 0%, #e8f0f8 100%);
            padding: 3rem 1rem;
            margin: 2rem -1rem;
            border-radius: 0;
        }

        #faq h2 {
            text-align: center;
            color: var(--blu-cotral);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
        }

        .faq-list {
            margin: 0;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-item {
            background-color: var(--bianco);
            border-radius: 12px;
            margin-bottom: 1.25rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid rgba(58, 107, 179, 0.1);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--testo-principale);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 60px;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--sfondo-chiaro);
            color: var(--blu-cotral);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.75rem;
            color: var(--blu-cotral);
            transition: transform 0.3s ease;
            font-weight: 300;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-question[aria-expanded="true"] {
            background-color: rgba(58, 107, 179, 0.05);
            color: var(--blu-cotral);
        }

        .faq-question[aria-expanded="true"]::after {
            content: '−';
            transform: rotate(0deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 1.5rem;
        }

        .faq-answer.active {
            max-height: 1000px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-content {
            padding: 1rem 0;
        }
        
        .faq-content p {
            color: var(--testo-secondario);
            line-height: 1.8;
            font-size: 1rem;
        }

        /* Sezione Contatti */
        #contatti {
            background: linear-gradient(135deg, var(--bianco) 0%, var(--sfondo-chiaro) 100%);
            padding: 3rem 1rem;
            margin: 2rem -1rem;
            border-radius: 0;
        }

        #contatti h2 {
            text-align: center;
            color: var(--blu-cotral);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        #contatti > p {
            text-align: center;
            color: var(--testo-secondario);
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        /* Form */
        .contact-form {
            background-color: var(--bianco);
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin: 0 auto;
            max-width: 800px;
            border: 1px solid rgba(58, 107, 179, 0.1);
        }

        .form-row {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.75rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: var(--testo-principale);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            min-height: 48px;
            transition: all 0.3s ease;
            background-color: var(--bianco);
            color: var(--testo-principale);
        }

        .form-group input:hover,
        .form-group select:hover,
        .form-group textarea:hover {
            border-color: #cbd5e1;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--blu-cotral);
            box-shadow: 0 0 0 3px rgba(58, 107, 179, 0.1);
            background-color: #fafbfc;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--testo-secondario);
            opacity: 0.7;
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
            line-height: 1.6;
        }

        .form-group .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.875rem;
            padding: 1rem;
            background-color: var(--sfondo-chiaro);
            border-radius: 8px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .form-group .checkbox-group:hover {
            background-color: #f0f4f8;
            border-color: #e5e7eb;
        }

        .form-group input[type="checkbox"] {
            width: auto;
            min-width: 22px;
            min-height: 22px;
            margin-top: 0.125rem;
            cursor: pointer;
            accent-color: var(--blu-cotral);
        }

        .form-group .checkbox-label {
            font-weight: 400;
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--testo-principale);
            cursor: pointer;
        }

        .contact-form .btn {
            min-width: 200px;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-form .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(58, 107, 179, 0.3);
        }

        /* Updates Section - Aggiornamenti in tempo reale */
        #aggiornamenti {
            background: linear-gradient(135deg, var(--sfondo-chiaro) 0%, #e8f0f8 100%);
            padding: 3rem 1rem;
            margin: 2rem -1rem;
            border-radius: 0;
        }

        #aggiornamenti h2 {
            text-align: center;
            color: var(--blu-cotral);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        #aggiornamenti > p {
            text-align: center;
            color: var(--testo-secondario);
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        /* Partner Logos Section */
        .partner-logos {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .partner-logo {
            display: block;
            background: var(--bianco);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            width: 100%;
            max-width: 300px;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .partner-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blu-cotral) 0%, var(--verde-primario) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .partner-logo:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            border-color: var(--blu-cotral);
        }

        .partner-logo:hover::before {
            transform: scaleX(1);
        }

        .partner-logo-img {
            max-width: 100%;
            height: auto;
            width: 100%;
            object-fit: contain;
            filter: grayscale(20%);
            transition: filter 0.3s ease;
        }

        .partner-logo:hover .partner-logo-img {
            filter: grayscale(0%);
        }

        .updates-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .update-card {
            background-color: var(--bianco);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--verde-primario);
        }

        .update-date {
            color: var(--testo-secondario);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .update-card h3 {
            margin-bottom: 0.75rem;
        }

        .update-card p {
            color: var(--testo-secondario);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .update-link {
            color: var(--blu-cotral);
            text-decoration: none;
            font-weight: 600;
        }

        .update-link:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background-color: var(--blu-cotral);
            color: var(--bianco);
            padding: 3rem 1rem;
            margin-top: 4rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .footer-links a {
            color: var(--bianco);
            text-decoration: none;
            opacity: 0.9;
        }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .footer-note {
            margin-top: 2rem;
            font-size: 0.9rem;
            opacity: 0.85;
            line-height: 1.6;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 1rem;
            width: 48px;
            height: 48px;
            background-color: var(--blu-cotral);
            color: var(--bianco);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 999;
            transition: all 0.3s;
        }

        .back-to-top.visible {
            display: flex;
        }

        .back-to-top:hover {
            background-color: var(--verde-primario);
            transform: translateY(-3px);
        }

        /* ============================================
           DESKTOP STYLES
           ============================================ */
        @media (min-width: 768px) {
            .header-row {
                padding: 0.75rem 2rem;
            }

            .header-row-middle {
                padding: 0.75rem 2rem;
                display: block;
            }

            .header-row-middle .header-logo-coes {
                display: none;
            }

            .header-row-top .header-logo-main {
                display: none;
            }

            /* Mostra logo principale nella prima riga su desktop */
            .header-logo-main-top {
                display: flex !important;
                height: 30px;
                align-items: center;
            }

            .header-logo-main-top img {
                height: 100%;
                width: auto;
                max-width: 150px;
                object-fit: contain;
            }

            /* Nascondi logo principale nella riga media su desktop */
            .header-row-middle .header-logo-main {
                display: none !important;
            }

            .header-logo-main {
                height: 60px;
            }

            .header-logo-astral {
                height: 40px;
            }

            .header-logo-coes {
                height: 40px;
                background-color: transparent !important;
            }

            .header-row-bottom {
                position: static;
                background-color: #269B35;
            }

            #mainNavDesktop {
                display: flex !important;
                align-items: center;
                position: static;
                width: auto;
                height: auto;
                max-width: none;
                background: none;
                box-shadow: none;
                padding: 0;
                overflow: visible;
                flex-direction: row;
            }

            /* Nascondi menu mobile su desktop */
            #mainNav {
                display: none !important;
            }

            .overlay {
                display: none !important;
            }

            .menu-close {
                display: none;
            }

            .nav-list {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 1rem;
                margin-top: 0;
                list-style: none;
            }

            .nav-list li {
                margin-bottom: 0;
            }

            .nav-list a {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
                color: var(--bianco);
                white-space: nowrap;
                display: block;
                text-transform: uppercase;
            }

            .nav-list a:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

            .nav-list a.active {
                background-color: rgba(255, 255, 255, 0.2);
            }

            .nav-list a::before {
                display: none;
            }

            .nav-dropdown {
                position: relative;
            }

            .nav-dropdown-toggle {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
                color: var(--bianco);
                white-space: nowrap;
                text-transform: uppercase;
            }

            .nav-dropdown-toggle::before {
                display: none;
            }

            .nav-dropdown-toggle::after {
                content: '▼';
                font-size: 0.6rem;
                margin-left: 0.5rem;
            }

            .nav-dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                background-color: var(--blu-cotral);
                min-width: 220px;
                padding: 0.5rem 0;
                margin-top: 0.25rem;
                border-radius: 6px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                z-index: 1002;
            }

            .nav-dropdown-menu li {
                margin-bottom: 0;
            }

            .nav-dropdown-menu a {
                text-transform: uppercase;
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
                display: block;
            }

            .nav-dropdown:hover .nav-dropdown-menu,
            .nav-dropdown.active .nav-dropdown-menu {
                display: block;
            }

            .overlay {
                display: none !important;
            }

            body {
                padding-bottom: 0;
            }

            main {
                padding: 0 2rem;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero {
                padding: 4rem 2rem;
                margin: 0 -2rem 3rem;
                text-align: left;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        /* Hero Map Container */
        .hero-map-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Hero Map - Versione compatta per hero */
        .hero .hero-map {
            width: 100%;
            min-height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hero UDR Info - Sotto la mappa */
        .hero-udr-info {
            width: 100%;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            animation: fadeInInfo 0.3s ease-out;
            display: none; /* Inizialmente nascosto */
            visibility: visible;
            opacity: 1;
        }

        .hero-udr-info[style*="display: block"],
        .hero-udr-info.show {
            display: block !important;
        }

        @keyframes fadeInInfo {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-udr-info-content {
            text-align: center;
        }

        .hero-udr-info-title {
            color: var(--bianco);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .hero-udr-info-description {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        .hero .hero-map svg {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            pointer-events: all;
        }

        /* UDR Badge nel Hero */
        .udr-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.95);
            color: var(--blu-cotral);
            padding: 0.75rem 1.25rem;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 10;
            animation: slideInBadge 0.3s ease-out;
            max-width: calc(100% - 2rem);
        }

        @keyframes slideInBadge {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .udr-badge-name {
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .udr-badge-close {
            background: transparent;
            border: none;
            color: var(--blu-cotral);
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.2s ease;
            flex-shrink: 0;
        }

        .udr-badge-close:hover {
            background: rgba(58, 107, 179, 0.1);
        }

        .udr-badge-close:active {
            background: rgba(58, 107, 179, 0.2);
        }

        .hero .hero-map .map-loading {
            color: rgba(255, 255, 255, 0.9);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        /* Path UDR nel hero - stili più leggeri per contrasto */
        .hero .hero-map path[data-udr-id] {
            transition: opacity 0.3s ease, filter 0.3s ease, stroke-width 0.3s ease;
            cursor: pointer;
        }

        .hero .hero-map path[data-udr-id]:hover {
            opacity: 0.9 !important;
            filter: brightness(1.15) drop-shadow(0 0 4px rgba(255,255,255,0.3)) !important;
        }

        .hero .hero-map path[data-udr-id].udr-selected {
            opacity: 1 !important;
            filter: brightness(1.3) drop-shadow(0 0 8px rgba(255,255,255,0.5)) !important;
            stroke: rgba(255, 255, 255, 0.9);
            stroke-width: 2.5;
        }

            .hero-buttons {
                flex-direction: row;
                gap: 1.5rem;
            }

            .card-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            #servizio-chiamata {
                padding: 4rem 2rem;
                margin: 3rem -2rem;
                border-radius: 12px;
            }

            #servizio-chiamata h2 {
                font-size: 2.25rem;
            }

            #servizio-chiamata > p {
                font-size: 1.1rem;
            }

            #servizio-chiamata h3 {
                font-size: 1.75rem;
            }

            .steps {
                grid-template-columns: repeat(3, 1fr);
                gap: 2.5rem;
            }

            .step-card {
                padding: 2.5rem;
            }

            .step-number {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .udr-section-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .udr-interactive-map {
                min-height: 500px;
            }

            #servizio-chiamata {
                padding: 4rem 2rem;
                margin: 3rem -2rem;
                border-radius: 12px;
            }

            #servizio-chiamata h2 {
                font-size: 2.25rem;
            }

            #servizio-chiamata > p {
                font-size: 1.1rem;
            }

            #servizio-chiamata h3 {
                font-size: 1.75rem;
            }

            .steps {
                grid-template-columns: repeat(3, 1fr);
                gap: 2.5rem;
            }

            .step-card {
                padding: 2.5rem;
            }

            .step-number {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            #faq {
                padding: 4rem 2rem;
                margin: 3rem -2rem;
                border-radius: 12px;
            }

            #faq h2 {
                font-size: 2.25rem;
            }

            #abbonamenti {
                padding: 4rem 2rem;
                margin: 3rem -2rem;
                border-radius: 12px;
            }

            #abbonamenti h2 {
                font-size: 2.25rem;
            }

            #abbonamenti > p {
                font-size: 1.1rem;
            }

            #abbonamenti h3 {
                font-size: 1.75rem;
            }

            .card-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            .card {
                padding: 2.5rem;
            }

            #come-funziona {
                padding: 4rem 2rem;
                margin: 3rem -2rem;
                border-radius: 12px;
            }

            #come-funziona h2 {
                font-size: 2.25rem;
            }

            #come-funziona > p {
                font-size: 1.1rem;
            }

            .udr-selector-section {
                padding: 2.5rem;
            }

            .udr-card {
                padding: 2.5rem;
            }

            .udr-video-container {
                max-width: 900px;
                margin: 3rem auto;
            }

            #documenti {
                padding: 4rem 2rem;
                margin: 3rem -2rem;
                border-radius: 12px;
            }

            #documenti h2 {
                font-size: 2.25rem;
            }

            #documenti > p {
                font-size: 1.1rem;
            }

            .doc-filters {
                margin-bottom: 3rem;
            }

            .doc-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .doc-card {
                padding: 2.5rem;
            }

            #aggiornamenti {
                padding: 4rem 2rem;
                margin: 3rem -2rem;
                border-radius: 12px;
            }

            #aggiornamenti h2 {
                font-size: 2.25rem;
            }

            #aggiornamenti > p {
                font-size: 1.1rem;
            }

            .partner-logos {
                flex-direction: row;
                gap: 3rem;
                max-width: 900px;
            }

            .partner-logo {
                max-width: 350px;
                padding: 2.5rem;
            }

            .updates-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            #contatti {
                padding: 4rem 2rem;
                margin: 3rem -2rem;
                border-radius: 12px;
            }

            #contatti h2 {
                font-size: 2.25rem;
            }

            #contatti > p {
                font-size: 1.1rem;
            }

            .contact-form {
                max-width: 800px;
                margin: 0 auto;
                padding: 3rem;
            }

            .form-row {
                flex-direction: row;
                gap: 2rem;
            }

            .form-group {
                flex: 1;
            }

            .contact-form .btn {
                min-width: 220px;
            }

            .form-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }

            section {
                padding: 3rem 0;
            }

            /* Scroll offset maggiore per desktop - navbar più alta (3 righe) */
            section[id] {
                scroll-margin-top: 200px;
            }
        }

        /* Modal Servizio a Chiamata */
        .servizio-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .servizio-modal.active {
            opacity: 1;
        }

        .servizio-modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
        }

        .servizio-modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background-color: var(--bianco);
            border-radius: 16px;
            padding: 2.5rem;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            text-align: center;
            transition: transform 0.3s ease;
            z-index: 10001;
        }

        .servizio-modal.active .servizio-modal-content {
            transform: translate(-50%, -50%) scale(1);
        }

        .servizio-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--testo-secondario);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            line-height: 1;
            padding: 0;
        }

        .servizio-modal-close:hover {
            background-color: var(--sfondo-chiaro);
            color: var(--blu-cotral);
            transform: rotate(90deg);
        }

        .servizio-modal-content h3 {
            color: var(--blu-cotral);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            margin-top: 0;
        }

        .servizio-modal-content p {
            color: var(--testo-secondario);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .servizio-modal-intro {
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .udr-modal-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
            text-align: left;
        }

        .udr-modal-card {
            background: var(--sfondo-chiaro);
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .udr-modal-card:hover {
            border-color: var(--verde-primario);
            box-shadow: 0 4px 12px rgba(38, 155, 53, 0.1);
        }

        .udr-modal-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .udr-modal-card-header h4 {
            margin: 0;
            color: var(--blu-cotral);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .udr-servizio-badge {
            display: inline-block;
            background: var(--verde-primario);
            color: white;
            padding: 0.375rem 0.75rem;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .udr-modal-card-body {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .udr-modal-nome {
            margin: 0;
            color: var(--testo-principale);
            font-weight: 600;
            font-size: 1rem;
        }

        .udr-modal-telefono {
            margin-top: 0.5rem;
        }

        .udr-telefono-label {
            display: block;
            font-size: 0.875rem;
            color: var(--testo-secondario);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .udr-telefono-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--verde-primario);
            text-decoration: none;
            padding: 0.75rem 1.25rem;
            background: white;
            border-radius: 8px;
            border: 2px solid var(--verde-primario);
            transition: all 0.3s ease;
        }

        .udr-telefono-link:hover {
            background: var(--verde-primario);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(38, 155, 53, 0.3);
        }

        .udr-telefono-icon {
            font-size: 1.5rem;
        }

        .servizio-modal-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #E5E7EB;
        }

        .servizio-modal-btn-close {
            min-width: 150px;
            padding: 0.875rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .servizio-modal-btn-close:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(58, 107, 179, 0.3);
        }

        @media (min-width: 768px) {
            .servizio-modal-content {
                padding: 3rem;
                max-width: 700px;
            }

            .servizio-modal-content h3 {
                font-size: 2rem;
            }

            .servizio-modal-content p {
                font-size: 1.15rem;
            }

            .udr-modal-card {
                padding: 2rem;
            }

            .udr-modal-card-header h4 {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            #faq {
                padding: 5rem 3rem;
                margin: 4rem -3rem;
            }

            #faq h2 {
                font-size: 2.5rem;
            }

            #abbonamenti {
                padding: 5rem 3rem;
                margin: 4rem -3rem;
            }

            #abbonamenti h2 {
                font-size: 2.5rem;
            }

            #abbonamenti h3 {
                font-size: 2rem;
            }

            .card-grid {
                gap: 3rem;
            }

            .card {
                padding: 3rem;
            }

            .udr-video-container {
                max-width: 1000px;
                margin: 4rem auto;
            }

            #come-funziona {
                padding: 5rem 3rem;
                margin: 4rem -3rem;
            }

            #come-funziona h2 {
                font-size: 2.5rem;
            }

            .udr-selector-section {
                padding: 3rem;
            }

            .udr-card {
                padding: 3rem;
            }

            #documenti {
                padding: 5rem 3rem;
                margin: 4rem -3rem;
            }

            #documenti h2 {
                font-size: 2.5rem;
            }

            .doc-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2.5rem;
            }

            .doc-card {
                padding: 2.5rem;
            }

            #contatti {
                padding: 5rem 3rem;
                margin: 4rem -3rem;
            }

            #contatti h2 {
                font-size: 2.5rem;
            }

            .contact-form {
                padding: 3.5rem;
            }

            #aggiornamenti {
                padding: 5rem 3rem;
                margin: 4rem -3rem;
            }

            #aggiornamenti h2 {
                font-size: 2.5rem;
            }

            .partner-logos {
                gap: 4rem;
                max-width: 1000px;
            }

            .partner-logo {
                max-width: 400px;
                padding: 3rem;
            }

            #servizio-chiamata {
                padding: 5rem 3rem;
                margin: 4rem -3rem;
            }

            #servizio-chiamata h2 {
                font-size: 2.5rem;
            }

            #servizio-chiamata h3 {
                font-size: 2rem;
            }

            .steps {
                gap: 3rem;
            }

            .step-card {
                padding: 3rem;
            }

            .step-number {
                width: 80px;
                height: 80px;
                font-size: 2.25rem;
            }

            .hero {
                padding: 5rem 3rem;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero .hero-map {
                min-height: 600px;
                height: 600px;
            }

            .hero-udr-info {
                padding: 2rem;
            }

            .hero-udr-info-title {
                font-size: 1.75rem;
            }

            .hero-udr-info-description {
                font-size: 1.1rem;
            }

            .map-placeholder {
                height: 400px;
            }
        }

        /* ============================================
           STILI SPECIFICI PAGINA TROVA UDR
           ============================================ */
        .breadcrumb {
            padding: 1rem 0;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--blu-cotral);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            color: var(--testo-secondario);
            margin: 0 0.5rem;
        }

        /* ============================================
           TEMPLATE SINGLE POST (UDR, Aggiornamenti, Documenti, FAQ)
           ============================================ */
        main article {
            max-width: 900px;
            margin: 0 auto;
            padding: 2.5rem 1.5rem;
            background-color: var(--bianco);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .entry-header {
            margin-bottom: 3rem;
            padding: 2rem 0 2.5rem 0;
            border-bottom: none;
            position: relative;
            background: transparent;
        }

        .entry-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--verde-primario) 0%, var(--blu-cotral) 100%);
            border-radius: 3px;
            opacity: 0.9;
        }

        .entry-header h1 {
            font-size: 2.25rem;
            font-weight: 700;
            color: #1F2933 !important;
            margin: 0 0 1.25rem 0;
            padding: 0rem 1rem;
            line-height: 1.3;
            text-transform: none;
            letter-spacing: -0.01em;
            display: block;
            width: 100%;
            clear: both;
            opacity: 1 !important;
            visibility: visible !important;
            background: transparent !important;
        }

        /* Assicura visibilità anche per varianti */
        article .entry-header h1,
        main article .entry-header h1,
        .entry-header > h1 {
            color: #1F2933 !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .entry-header .entry-date {
            color: var(--testo-secondario);
            font-weight: 500;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: var(--sfondo-chiaro);
            border-radius: 4px;
        }

        .entry-header .udr-subtitle {
            color: var(--testo-secondario);
            font-size: 1.1rem;
            margin-top: 0.75rem;
            line-height: 1.6;
        }

        .entry-content {
            line-height: 1.8;
            color: var(--testo-principale);
            font-size: 1rem;
            margin-top: 2rem;
        }

        .entry-content p {
            margin-bottom: 1.5rem;
        }

        .entry-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
        }

        /* Miglioramenti per PDF viewer e contenuti embedded */
        .entry-content iframe,
        .entry-content embed,
        .entry-content object {
            width: 100%;
            min-height: 600px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            margin: 2.5rem 0;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .entry-thumbnail {
            margin: 2.5rem 0 3.5rem 0;
            text-align: center;
        }

        .entry-thumbnail img {
            max-width: 70%;
            width: auto;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            margin: 0 auto;
            display: block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .entry-thumbnail img:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        }

        .entry-footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--sfondo-chiaro);
            text-align: center;
        }

        .entry-footer .btn {
            margin: 0;
            display: inline-block;
        }

        /* Categorie/Tag badges */
        .entry-categories {
            margin-bottom: 1.5rem;
        }

        .entry-categories .category-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--verde-primario);
            color: var(--bianco);
            border-radius: 20px;
            font-size: 0.875rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            box-shadow: 0 2px 6px rgba(38, 155, 53, 0.2);
            transition: all 0.3s ease;
        }

        .entry-categories .category-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(38, 155, 53, 0.3);
        }

        /* Meta section (per UDR) */
        .udr-meta-section {
            margin-top: 3rem;
            padding: 2rem;
            background-color: var(--sfondo-chiaro);
            border-radius: 12px;
        }

        .udr-meta-section h2 {
            color: var(--blu-cotral);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .udr-meta-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .udr-meta-section ul li {
            margin-bottom: 1rem;
        }

        .udr-meta-section .udr-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: var(--verde-primario);
            color: var(--bianco);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .udr-meta-section .udr-telefono-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--verde-primario);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .udr-meta-section .udr-telefono-link:hover {
            color: var(--blu-cotral);
            text-decoration: underline;
        }

        /* Link box (per Aggiornamenti e Documenti) */
        .link-box {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--sfondo-chiaro);
            border-radius: 8px;
        }

        .link-box p {
            margin: 0 0 0.5rem 0;
            font-weight: 600;
            color: var(--testo-principale);
        }

        .link-box .btn {
            margin-top: 0.5rem;
        }

        /* Download box (per Documenti) */
        .download-box {
            margin: 2.5rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, var(--sfondo-chiaro) 0%, #e8ecf1 100%);
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(58, 107, 179, 0.1);
        }

        .download-box .btn {
            min-width: 200px;
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

        @media (min-width: 768px) {
            main article {
                padding: 3rem 2.5rem;
            }

            .entry-header {
                padding: 2.5rem 0 3rem 0;
                margin-bottom: 3.5rem;
            }

            .entry-header h1 {
                font-size: 2.75rem;
                color: #1F2933 !important;
                margin-bottom: 1.5rem;
                padding: 0rem 1rem;
            }

            .entry-header::after {
                width: 120px;
                height: 4px;
            }

            .entry-thumbnail {
                margin: 2.5rem 0 3.5rem 0;
            }

            .entry-thumbnail img {
                max-width: 60%;
            }

            .entry-content {
                font-size: 1.1rem;
            }

            .download-box {
                padding: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            main article {
                padding: 4rem 3.5rem;
            }

            .entry-header {
                padding: 3rem 0 3.5rem 0;
                margin-bottom: 4rem;
            }

            .entry-header h1 {
                font-size: 3.25rem;
                color: #1F2933 !important;
                margin-bottom: 1.75rem;
                letter-spacing: -0.015em;
                padding: 0rem 1rem;
            }

            .entry-header::after {
                width: 150px;
                height: 4px;
            }

            .entry-content iframe,
            .entry-content embed,
            .entry-content object {
                min-height: 700px;
            }

            .entry-thumbnail {
                margin: 3rem 0 4rem 0;
            }

            .entry-thumbnail img {
                max-width: 50%;
            }

            .download-box {
                padding: 3rem;
            }
        }

        .search-section {
            background-color: var(--bianco);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .search-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .message {
            padding: 1rem;
            border-radius: 6px;
            margin-top: 1rem;
            display: none;
        }

        .message.error {
            background-color: #FEE2E2;
            color: #DC2626;
            border: 1px solid #DC2626;
            display: block;
        }

        .message.success {
            background-color: #D1FAE5;
            color: #059669;
            border: 1px solid #059669;
            display: block;
        }

        .result-section {
            background-color: var(--bianco);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            display: none;
        }

        .result-section.active {
            display: block;
        }

        .result-header {
            margin-bottom: 1.5rem;
        }

        .result-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blu-cotral);
            margin-bottom: 0.5rem;
        }

        .result-info {
            color: var(--testo-secondario);
            margin-bottom: 1.5rem;
        }

        .result-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .result-links a {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: var(--verde-primario);
            color: var(--bianco);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            text-align: center;
            transition: background-color 0.3s;
        }

        .result-links a:hover {
            background-color: #1e7a2a;
        }

        .result-links a.secondary {
            background-color: var(--blu-cotral);
        }

        .result-links a.secondary:hover {
            background-color: #2d5a9a;
        }

        .udr-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .udr-card {
            background-color: var(--bianco);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid var(--blu-cotral);
        }

        .udr-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        .udr-card--active {
            border-left-color: var(--verde-primario);
            background-color: #F0F9F4;
            box-shadow: 0 4px 16px rgba(38, 155, 53, 0.2);
        }

        .udr-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blu-cotral);
            margin-bottom: 0.5rem;
        }

        .udr-card--active h3 {
            color: var(--verde-primario);
        }

        .udr-card .udr-subtitle {
            font-size: 1rem;
            color: var(--testo-secondario);
            margin-bottom: 1.5rem;
        }

        .udr-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background-color: var(--verde-primario);
            color: var(--bianco);
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .udr-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        /* ============================================
           PULSANTE DOWNLOAD PDF (WordPress Block File)
           ============================================ */
        .wp-block-file__button,
        .wp-block-file__button.wp-element-button {
            display: inline-block;
            background: var(--blu-cotral) !important;
            color: var(--bianco) !important;
            padding: 1rem 2rem !important;
            border-radius: 8px !important;
            text-decoration: none !important;
            font-weight: 700 !important;
            font-size: 1rem !important;
            margin: 1rem 0 !important;
            transition: all 0.3s ease !important;
            border: 2px solid var(--blu-cotral) !important;
            text-align: center !important;
            min-width: 200px !important;
            min-height: 48px !important;
            line-height: 1.5 !important;
            box-shadow: 0 2px 8px rgba(58, 107, 179, 0.3) !important;
            cursor: pointer !important;
        }

        .wp-block-file__button:hover,
        .wp-block-file__button.wp-element-button:hover {
            background: var(--verde-primario) !important;
            border-color: var(--verde-primario) !important;
            color: var(--bianco) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 4px 16px rgba(38, 155, 53, 0.4) !important;
        }

        .wp-block-file__button:active,
        .wp-block-file__button.wp-element-button:active {
            transform: translateY(0) !important;
            box-shadow: 0 2px 8px rgba(58, 107, 179, 0.3) !important;
        }

        /* Mobile ottimizzato */
        @media (max-width: 767px) {
            .wp-block-file__button,
            .wp-block-file__button.wp-element-button {
                width: 100% !important;
                min-width: auto !important;
                padding: 1.25rem 2rem !important;
                font-size: 1.1rem !important;
                min-height: 56px !important;
                display: block !important;
                text-align: center !important;
            }
        }

        @media (min-width: 768px) {
            .wp-block-file__button,
            .wp-block-file__button.wp-element-button {
                min-width: 250px !important;
                padding: 1.125rem 2.5rem !important;
            }
        }

        .udr-actions a {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: var(--blu-cotral);
            color: var(--bianco);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            text-align: center;
            transition: background-color 0.3s;
        }

        .udr-actions a:hover {
            background-color: #2d5a9a;
        }

        .udr-actions a.secondary {
            background-color: var(--verde-primario);
        }

        .udr-actions a.secondary:hover {
            background-color: #1e7a2a;
        }

        .loading {
            text-align: center;
            padding: 3rem;
            color: var(--testo-secondario);
        }

        .loading::after {
            content: '...';
            animation: dots 1.5s steps(4, end) infinite;
        }

        @keyframes dots {
            0%, 20% { content: '.'; }
            40% { content: '..'; }
            60%, 100% { content: '...'; }
        }

        @media (min-width: 768px) {
            .hero .hero-map {
                min-height: 500px;
                height: 500px;
                aspect-ratio: 810 / 1012.5;
            }

            .search-form {
                flex-direction: row;
                align-items: flex-end;
            }

            .form-group {
                flex: 1;
            }

            .udr-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .result-links {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .udr-actions {
                flex-direction: row;
                flex-wrap: wrap;
            }
        }

        @media (min-width: 1024px) {
            .udr-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .map-placeholder {
                height: 500px;
            }
        }
    

/* ============================================
   STILI SPECIFICI PAGINA TROVA UDR
   ============================================ */
.breadcrumb {
            padding: 1rem 0;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--blu-cotral);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            color: var(--testo-secondario);
            margin: 0 0.5rem;
        }

        /* ============================================
           SEZIONI
           ============================================ */
        section {
            margin-bottom: 3rem;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--testo-principale);
            margin-bottom: 1.5rem;
        }

        /* ============================================
           MAPPA PLACEHOLDER
           ============================================ */
        .map-placeholder {
            width: 100%;
            height: 250px;
            background-color: var(--bianco);
            border: 2px dashed var(--testo-secondario);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--testo-secondario);
            margin-bottom: 2rem;
        }

        /* ============================================
           MAPPA INTERATTIVA UDR
           ============================================ */
        .udr-interactive-map {
            width: 100%;
            min-height: 400px;
            background-color: var(--bianco);
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid var(--sfondo-chiaro);
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .udr-interactive-map svg {
            width: 100%;
            height: auto;
            display: block;
        }

        .udr-interactive-map .map-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--testo-secondario);
            font-size: 1rem;
            z-index: 1;
        }

        .udr-interactive-map .map-error {
            padding: 2rem;
            text-align: center;
            color: var(--testo-secondario);
        }

        /* UDR Path Interactions */
        .udr-interactive-map path[data-udr-id] {
            transition: opacity 0.3s ease, filter 0.3s ease, stroke-width 0.3s ease;
            cursor: pointer;
        }

        .udr-interactive-map path[data-udr-id]:hover {
            opacity: 0.8 !important;
            filter: brightness(1.1) !important;
        }

        .udr-interactive-map path[data-udr-id].udr-selected {
            opacity: 1 !important;
            filter: brightness(1.2) drop-shadow(0 0 8px rgba(0,0,0,0.3)) !important;
            stroke: var(--blu-cotral);
            stroke-width: 2;
        }

        /* ============================================
           FORM RICERCA
           ============================================ */
        .search-section {
            background-color: var(--bianco);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .search-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 600;
            color: var(--testo-principale);
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--sfondo-chiaro);
            border-radius: 6px;
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            min-height: 44px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--blu-cotral);
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            min-height: 44px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-family: 'Open Sans', sans-serif;
        }

        .btn-primary {
            background-color: var(--blu-cotral);
            color: var(--bianco);
        }

        .btn-primary:hover {
            background-color: #2d5a9a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* ============================================
           MESSAGGI ERRORE/SUCCESSO
           ============================================ */
        .message {
            padding: 1rem;
            border-radius: 6px;
            margin-top: 1rem;
            display: none;
        }

        .message.error {
            background-color: #FEE2E2;
            color: var(--errore);
            border: 1px solid var(--errore);
            display: block;
        }

        .message.success {
            background-color: #D1FAE5;
            color: var(--successo);
            border: 1px solid var(--successo);
            display: block;
        }

        /* ============================================
           RISULTATO RICERCA
           ============================================ */
        .result-section {
            background-color: var(--bianco);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            display: none;
        }

        .result-section.active {
            display: block;
        }

        .result-header {
            margin-bottom: 1.5rem;
        }

        .result-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blu-cotral);
            margin-bottom: 0.5rem;
        }

        .result-info {
            color: var(--testo-secondario);
            margin-bottom: 1.5rem;
        }

        .result-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .result-links a {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: var(--verde-primario);
            color: var(--bianco);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            text-align: center;
            transition: background-color 0.3s;
        }

        .result-links a:hover {
            background-color: #1e7a2a;
        }

        .result-links a.secondary {
            background-color: var(--blu-cotral);
        }

        .result-links a.secondary:hover {
            background-color: #2d5a9a;
        }

        /* ============================================
           CARD UDR
           ============================================ */
        .udr-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .udr-card {
            background-color: var(--bianco);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid var(--blu-cotral);
        }

        .udr-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        .udr-card--active {
            border-left-color: var(--verde-primario);
            background-color: #F0F9F4;
            box-shadow: 0 4px 16px rgba(38, 155, 53, 0.2);
        }

        .udr-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blu-cotral);
            margin-bottom: 0.5rem;
        }

        .udr-card--active h3 {
            color: var(--verde-primario);
        }

        .udr-card .udr-subtitle {
            font-size: 1rem;
            color: var(--testo-secondario);
            margin-bottom: 1.5rem;
        }

        .udr-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background-color: var(--verde-primario);
            color: var(--bianco);
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .udr-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        /* ============================================
           PULSANTE DOWNLOAD PDF (WordPress Block File)
           ============================================ */
        .wp-block-file__button,
        .wp-block-file__button.wp-element-button {
            display: inline-block;
            background: var(--blu-cotral) !important;
            color: var(--bianco) !important;
            padding: 1rem 2rem !important;
            border-radius: 8px !important;
            text-decoration: none !important;
            font-weight: 700 !important;
            font-size: 1rem !important;
            margin: 1rem 0 !important;
            transition: all 0.3s ease !important;
            border: 2px solid var(--blu-cotral) !important;
            text-align: center !important;
            min-width: 200px !important;
            min-height: 48px !important;
            line-height: 1.5 !important;
            box-shadow: 0 2px 8px rgba(58, 107, 179, 0.3) !important;
            cursor: pointer !important;
        }

        .wp-block-file__button:hover,
        .wp-block-file__button.wp-element-button:hover {
            background: var(--verde-primario) !important;
            border-color: var(--verde-primario) !important;
            color: var(--bianco) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 4px 16px rgba(38, 155, 53, 0.4) !important;
        }

        .wp-block-file__button:active,
        .wp-block-file__button.wp-element-button:active {
            transform: translateY(0) !important;
            box-shadow: 0 2px 8px rgba(58, 107, 179, 0.3) !important;
        }

        /* Mobile ottimizzato */
        @media (max-width: 767px) {
            .wp-block-file__button,
            .wp-block-file__button.wp-element-button {
                width: 100% !important;
                min-width: auto !important;
                padding: 1.25rem 2rem !important;
                font-size: 1.1rem !important;
                min-height: 56px !important;
                display: block !important;
                text-align: center !important;
            }
        }

        @media (min-width: 768px) {
            .wp-block-file__button,
            .wp-block-file__button.wp-element-button {
                min-width: 250px !important;
                padding: 1.125rem 2.5rem !important;
            }
        }