/* Reset di base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Stile generale del body */
body {
  font-family: "Oxanium", sans-serif;
  background: linear-gradient(to left, #045b99, #02223b);
  color: white;
  overflow-x: hidden;
  letter-spacing: 0.8px; /* Maggiore leggibilità */
  font-size: large;
  padding-top: 140px; /* Altezza navbar per evitare sovrapposizione */
}

/* Sezione hero */
.hero {
  /* Sfondo trasparente */
  padding-top: 200px;
  background: none;
  padding: 3rem 2rem;
  text-align: center;
  text-shadow: 3px 3px 6px #000; /* Ombra intensa per leggibilità */
}

.hero h1 {
  padding-top: 200px;
  font-size: 2.5rem;
  color: #b3c6ff; /* Blu chiaro */
  margin: 0;
  background: none; /* Nessuno sfondo */
}

/* Contenuto principale */
main {
  padding: 3rem 2rem 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Titoli delle sezioni */
.content h2 {
  color: #b3c6ff; /* Blu chiaro */
  margin-top: 2rem;
}

/* Liste */
ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

/* Diagrammi e immagini */
.diagram {
  text-align: center;
  margin: 2rem 0;
}

.diagram img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
  background: linear-gradient(to left, #045b99, #02223b);
  color: white;
  padding: 40px 20px 20px;
  font-family: "Oxanium", sans-serif;
  border-top: 1.5px solid #ffffff;
  letter-spacing: 0.4px;
}

/* Contenitore del footer */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* Logo nel footer */
.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-logo p {
  max-width: 200px;
  font-size: 13px;
}

/* Link e contatti nel footer */
.footer-links,
.footer-contatti {
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-links h4,
.footer-contatti h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: white;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contatti a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contatti a:hover {
  color: #b3c6ff;
  transition: color 0.3s;
}

/* Parte inferiore del footer */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 15px;
}