* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: 'Segoe UI', sans-serif;

  background-color: #ffffff;

  color: #0a2a43;

  font-size: 16px;

  line-height: 1.6;

}



header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  padding: 1rem 2rem;

  background-color: #0a2a43;

}



.logo {

  background-color: #ffffff;

  padding: 0.5rem 1rem;

  border-radius: 8px;

  border: 1px solid #ddd;

  display: flex;

  justify-content: center;

  align-items: center;

  height: 100px;

}



.logo img {

  max-height: 80px;

  width: auto;

  margin-top: 23px;

}



.menu {

  display: flex;

  list-style: none;

  gap: 1.5rem;

}



.menu a {

  color: #ffffff;

  text-decoration: none;

  font-weight: 600;

}



.menu a:hover {

  color: #aad4f2;

}



.menu-toggle {

  display: none;

  background: none;

  border: none;

  cursor: pointer;

}



.contatti {

  padding: 3rem 2rem;

  text-align: center;

}



.contatti h2 {

  font-size: 2rem;

  color: #0a2a43;

  margin-bottom: 2rem;

}



.tabella-contatti {

  max-width: 800px;

  margin: 0 auto;

  overflow-x: auto;

}



.tabella-contatti table {

  width: 100%;

  border-collapse: collapse;

  font-size: 1rem;

}



.tabella-contatti td {

  border: 1px solid #ddd;

  padding: 1rem;

  text-align: left;

  vertical-align: top;

}



.tabella-contatti tr:nth-child(even) {

  background-color: #f9f9f9;

}



.tabella-contatti tr:hover {

  background-color: #eef6fc;

}



.tabella-contatti a {

  color: #0a2a43;

  text-decoration: underline;

  font-weight: 500;

}

.mappa {

  max-width: 800px;

  width: 100%;

  margin: 2.5rem auto 0 auto;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 0 20px rgba(0, 79, 132, 0.15);

  border: 1px solid #aad4f2;

}



.mappa iframe {

  width: 100%;

  height: 300px;

  display: block;

}



footer {

  background-color: #f1f1f1;

  text-align: center;

  padding: 1rem;

  font-size: 0.9rem;

  margin-top: 2rem;

}



footer a {

  color: #0a2a43;

  text-decoration: underline;

  font-weight: 500;

}



@media (max-width: 768px) {

  .menu {

    flex-direction: column;

    width: 100%;

    background-color: #0a2a43;

    margin-top: 1rem;

    border-top: 1px solid #aad4f2;

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;

  }



  .menu.show {

    max-height: 400px;

  }



  .menu-toggle {

    display: block;

  }



  .menu a {

    padding: 0.5rem 1rem;

  }



  .logo img {

    max-height: 60px;

    margin-top: 10px;

  }

}