:root {
            --blu-scuro: #00538a;
            --blu-medio: #66b3d9;
            --blu-chiaro: #e6f2f9;
            --verde-hover: #52c133;
            --testo-scuro: #333333;
            --bianco: #ffffff;
        }

        /* 2. LAYOUT GENERALE */
        .container-box {
            display: grid;
            grid-template-columns: repeat(3, 1fr); 
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .box-interattivo {
            background-color: var(--bianco);
            border: 2px solid #00538a;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between; 
            min-height: 220px;
            box-sizing: border-box;
        }

        /* Hover sul Box */
        .box-interattivo:hover {
            background-color: var(--blu-chiaro);
            border-color: var(--blu-medio);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .box-interattivo p {
            font-family: Arial, sans-serif;
            color: var(--testo-scuro);
            font-size: 1.1rem;
            margin-bottom: 15px;
            margin-top: 0;
        }

        /* 3. IL LINK */
        .box-interattivo a {
            color: var(--blu-scuro);
            font-weight: bold;
            text-decoration: none !important;
            position: relative;
            display: inline-block; /* Cruciale per dare una larghezza al link */
            padding-bottom: 4px;
            align-self: center;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        /* 4. LA SOTTOLINEATURA ANIMATA DA SINISTRA (Metodo Width) */
        .box-interattivo a::after {
            content: '';
            position: absolute;
            width: 0; /* Partiamo da larghezza zero */
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--verde-hover, #52c133);
            transition: width 0.3s ease-in-out; /* Animazione sulla larghezza */
            display: block;
        }

        /* Attivazione al passaggio del mouse sul BOX */
        .box-interattivo:hover a::after {
            width: 100%; /* Si espande al 100% della larghezza del link */
        }

        /* 5. ICONA DOWNLOAD */
        .download-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto;
            fill: #cccccc;
            transition: fill 0.3s ease, transform 0.3s ease;
        }

        .box-interattivo:hover .download-icon {
            fill: var(--blu-scuro);
            transform: translateY(3px);
        }

        /* === RESPONSIVITÀ === */
        @media (max-width: 992px) {
            .container-box {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .container-box {
                grid-template-columns: 1fr;
            }
        }