/* Container Icone */
.servizi-borgo-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}

.servizio-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.servizio-item:hover {
    transform: translateY(-5px);
}

.servizio-item i {
    display: block;
    font-size: 41px;
    color: #000; /* Colore oro per le icone */
    margin-bottom: 10px;
}

.servizio-item p {
    font-size: 16px;
    font-weight: 600;
    color: #001a49; /* Blu scuro del tuo brand */
    text-transform: uppercase;
}

/* Spaziatura extra se necessaria */
.mt-50 { margin-top: 50px; }
.mb-100 { margin-bottom: 100px; }


