html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: Arial, sans-serif;
      background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
      background-color: #fcefd3;
      background-repeat: repeat;
      background-size: auto;
    }

    table {
      width: 100%;
      height: 100%;
      border-collapse: collapse;
    }

    td {
      border: none;
      padding: 20px;
      vertical-align: top;
    }

    .left {
      width: 25%;
    }

    .left-content {
      height: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding-left: 30px;
    }

    .center {
      width: 50%;
      text-align: center;
      vertical-align: top;
    }

    .right {
      width: 25%;
    }

    h1 {
      color: #333;
      margin-bottom: 10px;
      margin-top: 30px;
    }

    p {
      color: #444;
      font-size: 18px;
      margin: 10px 0;
    }

    a {
      color: #007BFF;
      text-decoration: underline;
      font-size: 18px;
    }

    a:hover {
      color: #0056b3;
    }

    .link-list {
      list-style-type: disc;
    }

    .link-list li {
      margin: 15px 0;
    }

    /* Copyright in basso a destra */
    .copyright {
      position: fixed;
      bottom: 10px;
      right: 20px;
      font-size: 14px;
      color: #555;
    }

    /* Privacy in basso a sinistra */
    .privacy {
      position: fixed;
      bottom: 10px;
      left: 20px;
      font-size: 14px;
      color: #555;
    }

    /* Contatti centrato in basso */
    .contatti {
      position: fixed;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      color: #555;
    }