    .scheda body {
      background: linear-gradient(135deg, #f0f4f8, #dceeff);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 40px 20px;
    }

    .scheda {
      width: 100%;
      max-width: 960px; /* ⬅️ Ultra wide card */
      background-color: #ffffff;
      padding: 50px 40px;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      text-align: center;
      animation: fadeInUp 0.8s ease;
      transition: all 0.4s ease;
    }

    .scheda:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    }

    .immagine {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      border: 5px solid #4CAF50;
      object-fit: cover;
      margin: 0 auto 30px;
      box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
      transition: transform 0.3s ease;
    }

    .immagine:hover {
      transform: scale(1.08);
    }

    .scheda h2 {
      font-size: 32px;
      color: #1a1a1a;
      margin-bottom: 16px;
    }

    .scheda p {
      font-size: 18px;
      color: #444;
      line-height: 1.7;
      margin-bottom: 16px;
      max-width: 85%;
      margin-left: auto;
      margin-right: auto;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 1024px) {
      .scheda {
        padding: 40px 32px;
      }

      .scheda h2 {
        font-size: 28px;
      }

      .scheda p {
        font-size: 16px;
      }

      .immagine {
        width: 120px;
        height: 120px;
      }
    }

    @media (max-width: 600px) {
      .scheda {
        padding: 30px 20px;
        border-radius: 18px;
      }

      .scheda h2 {
        font-size: 24px;
      }

      .scheda p {
        font-size: 15px;
        line-height: 1.5;
      }

      .immagine {
        width: 100px;
        height: 100px;
      }
    }
