a {
    color: #fff500;
}
a:hover{
    color: #fff500;
}
        
        .contact-row {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-card {
            flex: 1;
            background: white;
            padding: 30px 25px;
            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;
        }
        
        .contact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(41, 23, 112, 0.1);
            border-color: #fff500;
        }
        
        .contact-card h3 {
            font-size: 1.8rem;
            color: #291770;
            margin-bottom: 25px;
            border-left: 5px solid #fff500;
            padding-left: 15px;
        }
        
        .contact-info-item {
            margin: 20px 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-info-item i {
            width: 30px;
            color: #291770;
            font-size: 1.5rem;
            text-align: center;
        }
        
        .contact-info-item p {
            margin: 0;
            color: #2d3f4e;
        }
        
        .contact-info-item a {
            color: #291770;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .contact-info-item a:hover {
            color: #1a0f4a;
            text-decoration: underline;
        }
        
        .map-link {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e0e7ef;
            text-align: center;
        }
        
        .map-link a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #291770;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .map-link a:hover {
            color: #fff500;
            transform: translateX(5px);
        }
        
        @media (max-width: 768px) {
            .contact-row {
                flex-direction: column;
                gap: 20px;
            }
        }
        #header_h3 {
            color: #ffffff;
        }
    .calendar-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -5px;
        padding: 0 5px;
    }

    .calendar-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 280px;
    }

    .calendar-table th, .calendar-table td {
        padding: 8px 5px;
        text-align: center;
        font-size: 14px;
    }

    .calendar-table th {
        background: #f0edff;
        color: #291770;
        font-weight: 600;
    }

    .calendar-table td {
        cursor: pointer;
        color: #291770;
        transition: background-color 0.2s;
    }

    .calendar-table td:hover:not(.past):not(.weekend) {
        background: #f0edff;
    }

    .calendar-table td.past, .calendar-table td.weekend {
        color: #ccc;
        background: #f5f5f5;
        cursor: not-allowed;
    }

    .calendar-table td.selected {
        background: #4b3996;
        color: white;
        font-weight: bold;
    }

    .calendar-table td.empty {
        color: #ccc;
        background: transparent;
    }

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.time-slot {
    padding: 10px 5px;
    text-align: center;
    border-radius: 5px;
    background: #f0edff;
    color: #291770;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.time-slot:hover:not(.past) {
    background: #d0c9ff;
    transform: scale(1.02);
}

.time-slot.past {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

.time-slot.selected {
    background: #4b3996;
    color: white;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .calendar-table th,
    .calendar-table td {
        padding: 6px 3px;
        font-size: 13px;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 5px;
    }
    
    .time-slot {
        padding: 8px 3px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .calendar-table th,
    .calendar-table td {
        padding: 5px 2px;
        font-size: 12px;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .time-slot {
        font-size: 12px;
    }
}
.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;
    }
}