* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #343248;
  color: #FFF;
}

.wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.headerT {
  width: 100%;
  padding-top: 20px;
}

.logoContainer {
  width: 100%;
  padding: 2em;
  text-align: center;
}

.logoContainer img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.descContainer {
  padding: 0 10%;
  text-align: center;
  margin-top: 10px;
}

.descContainer p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

.info-block {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.cta-button {
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  font-weight: 900;
  padding: 1em 2em;
  border: solid 2px #00f780;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  background-color: #00f780;
  color: #343248;
}

#footer {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 10px;
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: auto;
}

.footerLink a {
  color: #FFF;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.footerLink a:hover {
  text-decoration: underline;
}

/* Ottimizzazione Mobile */
@media (max-width: 480px) {
  .descContainer {
    padding: 0 20px;
  }

  .descContainer p {
    font-size: 0.95rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8em 1.5em;
  }

  #footer {
    flex-direction: row;
    font-size: 0.7rem;
  }
}