/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
        

        /* Colori Brandizzati dal Volantino */
        .bg-ciofs-blue { background-color: #0b325c; }
        .text-ciofs-blue { color: #0b325c; }
        .bg-ciofs-yellow { background-color: #f6c013; }
        .text-ciofs-yellow { color: #f6c013; }
        
        /* Colori Bolli */
        .bg-bollo-blue { background-color: #1a365d; }
        .bg-bollo-red { background-color: #8b1116; }
        .bg-bollo-green { background-color: #277931; }

        /* Stile per i bolli CSS */
        .bollo {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), inset 0 -5px 15px rgba(0,0,0,0.2);
            flex-shrink: 0;
            padding: 10px;
            position: relative;
            overflow: hidden;
        }
        
        /* Effetto luce sui bolli per renderli simili alle foto */
        .bollo::after {
            content: '';
            position: absolute;
            top: 5%;
            left: 10%;
            width: 80%;
            height: 40%;
            background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Stile Booking Plugin (Replica dello screenshot) */
        .booking-step-active { border-color: #f37130; color: #f37130; }
        .booking-step-inactive { border-color: #cbd5e1; color: #64748b; }
        .booking-btn { background-color: #f37130; }
        .booking-btn:hover { background-color: #db6124; }
        
        html { scroll-behavior: smooth; }/* End custom CSS */