body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column; /* <-- necessario per il footer */
  background: #fff;
  font-family: Arial, sans-serif;
}

.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('Logo.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

.logo {
  max-width: 950px;
  height: auto;
}

.sidebar {
  width: 40px;
  background: #f2d0c6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
}

.sidebar a {
  color: #a25524;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.sidebar a:hover {
  color: #1da1f2;
}

/* --- FOOTER IN BASSO --- */
.footer-info {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
  color: #a25524;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 6px;
}

.footer-info .separator {
  color: #a25524;
}

.footer-info .phone-number {
  color: #a25524;
}

