a {
            color: #fff500;
        }
        a:hover{
            color: #fff500;
        }
        #header_h3 {
            color: #ffffff;
        }
        
        .pulsanti {
            color: #291770;
            border: 1px solid #edf2f7;
            background: rgba(255, 255, 255, 0.315);
            padding: 20px 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            cursor: pointer;
            font-size: 24px;
            font-weight: bold;
            min-width: 150px;
        }

        .pulsanti:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(41, 23, 112, 0.1);
            border-color: #fff500;
        }

        @media screen and (max-width: 480px) {
            .pulsanti {
                padding: 15px 30px;
                font-size: 20px;
                min-width: 120px;
            }
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 0 auto;
            max-width: 1200px;
        }
        
        .services-grid a {
            text-decoration: none;
            display: block;
            width: calc(50% - 15px); /* Due box per riga (50% - metà gap) */
            min-width: 280px;
            flex: 0 0 auto; /* Impedisce l'allungamento flessibile */
        }
        
        .card {
            width: 100%;
            min-height: 300px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #edf2f7;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            box-sizing: border-box;
        }
        
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(41, 23, 112, 0.1);
            border-color: #fff500;
        }
        
        .card h3 {
            text-align: center;
            margin: 0 0 20px 0;
            padding: 0;
            color: #291770;
            font-size: 1.5rem;
            width: 100%;
        }
        
        .card img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
            max-height: 120px;
            object-fit: contain;
        }
        
        /* Media query per tablet */
        @media screen and (max-width: 768px) {
            .services-grid a {
                width: calc(50% - 15px); /* Mantiene due box anche su tablet */
            }
        }
        
        /* Media query per mobile */
        @media screen and (max-width: 640px) {
            .services-grid a {
                width: 100%; /* Un box per riga su mobile */
                max-width: 400px;
            }
            
            .services-grid {
                gap: 20px;
            }
        }

        .links {
            text-align: center;
        }

        i {
            color: black;
        }