﻿
.servizi-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-bottom: 10px;
	border: 1px solid #808080;
	background-color: #ccc;
}

.servizi-buttons a {
  display: inline-block;
  background: #f5f5f5;
  color: #000;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 500;
  transition: background 0.4s ease, transform 0.3s ease;
}

.servizi-buttons a:hover {
	background: #ccc;
	color: #800000 ;
	transform: translateY(-3px);
}

