body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

p {
  line-height: 1.7;
  margin-bottom: 14px;
}

ul {
  margin: 0 0 14px 24px;
  line-height: 1.7;
}

a {
  color: #0066cc;
}

.back {
  display: inline-block;
  margin-bottom: 32px;
  color: #0066cc;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Specific styles for contatti.html */
.contact-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 24px;
  line-height: 2;
}

.contact-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 16px;
}

td {
  padding: 6px 12px 6px 0;
  vertical-align: top;
}

td:first-child {
  font-weight: bold;
  white-space: nowrap;
  padding-right: 24px;
  color: #555;
}

/* Custom Scrollbar Styles */
* {
  scrollbar-width: thin;
  scrollbar-color: #000099 #f4f5f6;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #f4f5f6;
}

*::-webkit-scrollbar-thumb {
  background-color: #000099;
  border-radius: 4px;
  border: 1px solid #f4f5f6;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #0000cc;
}

