body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

header {
    background: #4787ff;
    color: white;
    text-align: center;
    padding: 15px;
}

h1, h2 {
    color: #202020;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

button {
    margin: 5px;
    padding: 10px;
    background: #0073e6;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #005bb5;
}

/* Footer Styling */
footer {
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
  }
  
  .footer-section {
    flex: 1;
    padding: 0 30px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpSection 1s ease-in-out forwards;
  }
  
  .footer-section:nth-child(1) {
    animation-delay: 0.2s;
  }
  
  .footer-section:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .footer-section:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  .footer-section h3 {
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }
  
  .footer-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #008cff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
    z-index: 0;
  }
  
  .footer-section h3:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .footer-section h3:hover {
    color: #008cff;
  }
  
  .footer-section p {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.8;
  }
  
  .footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section a:hover {
    color: #008cff;
  }
  
  .footer-social {
    text-align: center;
    margin-top: 30px;
  }
  
  
   /* Footer Bottom */
   .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  
  .social-icons {
    display: flex;
    justify-content: flex-start;  /* Sposta le icone a sinistra */
    gap: 40px;
  }
  
  .social-icon {
    color: #f1f1f1;
    font-size: 2.5rem;
    transition: transform 0.3s ease, color 0.3s ease, font-size 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .social-icon:hover {
    color: #00a6f3;
    transform: scale(1.5) rotate(360deg);
    font-size: 3rem;
  }
  
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  
  .footer-nav li {
    margin-bottom: 10px;
  }
  
  .footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: #008cff;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-section {
      padding: 20px 0;
    }
  
    .social-icons {
      flex-direction: column;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeInUpSection {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
