.logo {
    margin-top: 15px;
    width: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.facebook {
    width: 50px;
    margin-bottom: 20px;
}

.linkedin {
    width: 50px;
    margin-bottom: 20px;
}

nav {
    text-align: center;
}

h1 {
    font-family: sans-serif;
    font-size: 60px;
    text-align: center;
    margin-top: 25px;
}

a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    margin: 20px;
    color: rgb(107, 112, 126);
}

a:hover {
    color: rgb(169, 95, 189); 
}

.active {
    color: rgb(169, 95, 189); 
    text-decoration: underline;
}

table {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
}

.sapio {
    width: 80vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    border-radius: 25px;
    box-shadow: 7px 7px 10px black;
}

.p1 {
    margin: 0 auto;
    width: 60vw;
}

p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 25px;
    text-align: justify;
}

footer { 
    margin-top: 110px;
    background-color: rgb(107, 112, 126);
    padding: 0px 0px 1vh 0px;
    border-radius: 25px;
}

.fine {
    color: white;
    text-align: center;
    font-family: sans-serif;
    font-size: 50px;
    margin-bottom: 120px;
}

.fine2 {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 35px;
    margin-left: 45px;
}

.contatti {
    color: white;
    font-size: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0px 0px 15px 45px;
}

.altre {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 35px;
    margin-left: 45px;
    margin-top: 170px;
}

.info {
    color: white;
    font-size: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 45px;
}

.contatti1{
    color: white;
    font-size: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 100px;
}

.titolo2 {
    text-align: center;
    font-family: sans-serif;
    font-size: 50px;
    margin-bottom: 10px;
}

.linea {
    width: 90px;
    height: 2px;
    color: rgb(169, 95, 189);
    background-color: rgb(169, 95, 189);
    margin-bottom: 40px;
}

.sinistra {
    width: 40%;
    margin-top: 50px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 25px;
}

.destra {
    width: 40%;
    margin-top: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 25px;
    position: absolute;
    right: 20px;
}

li {
    list-style: none;
    position: relative;
    margin-bottom: 25px;
}

li::before {
    content: ">";
    font-size:35px;
}

.paragrafo {
    margin: 0px 30px 70px 30px;
}

.software {
    width: 80vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    border-radius: 25px;
    box-shadow: 7px 7px 10px black;
}

.carousel {
  width: 99%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
  background: rgb(250, 250, 250);
  border-radius: 20px;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 18s linear infinite;
}

.carousel img {
  height: 100px;
  opacity: 0.8;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/*.carousel:hover .carousel-track {
  animation-play-state: paused;
}*/

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.p2 {
    width: 90vw;
    margin: 0px auto 70px auto;
}

.clienti {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 30px;
    margin-left: 35px;
    margin-bottom: 20px;
}

.policy a{
    color: white;
    font-weight: 100;
    font-size: 16px;
}

.policy a:hover {
    text-decoration: underline;
}
/*popup policy*/
.policy-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.policy-content {
  background: #fff;
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  margin: 5vh auto;
  padding: 20px;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
}

.policy-content h1,
.policy-content h2 {
  margin-top: 20px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
}

/*gestione consenso*/
#cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 16px;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  z-index: 9998;
  transition: transform 0.2s ease;
}

#cookie-settings-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}