body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
    }
    
    .page-content {
      width: 100%;
      max-width: 1200px;
      margin-top: 80px; /* ← puoi regolare questo valore per far scendere tutto */
    }

    .text {
     font-size: 40px;
     font-family: 'Arial Black', Helvetica, sans-serif;
     margin-top: -30px; /* distanza ridotta per 300ZX */
    }

    .text-350 {
     font-size: 40px;
     font-family: 'Arial Black', Helvetica, sans-serif;
     margin-top: 40px; /* distanza standard per 350Z */
    }

    .car-table {
      width: 100%;
      margin-bottom: 50px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .car-box {
      flex: 1 1 45%;
      border: 1px solid #333; /* bordo visibile */
      padding: 20px;
      border-radius: 10px;
      box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
      background-color: #ffffff;
      text-align: center;
    }
    
     .car-box:hover {
      border-color: blue;
      box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
      transform: scale(1.02);
      transition: all 0.3s ease;
    }

    .car-box img {
      width: 100%;
      max-width: 400px;
      height: auto;
    }
     
      .z350-wrapper img {
      height: 200px;
      object-fit: contain;
      transform: translateY(35px);
    }

    .bottom-links {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1000px;
      margin: 50px auto 0 auto;
      font-size: 24px;
    }
    
    .left-link, .right-link {
      flex: 0 0 auto;
    }
    
    .left-link {
      margin-left: -100px; /* regola la T di TORNA ALLA HOME */
    }
    
    .right-link {
      margin-right: -100px; /* regola la I finale di RICAMBI */
    }
    
    .bottom-links a {
      color: black;
      font-family: "Times New Roman", serif;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.2s, text-decoration 0.2s;
    }
    
    .bottom-links a:hover {
      color: #d10a0a;
      text-decoration: underline;
    }


    @media (max-width: 768px) {
      body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .page-content {
    padding: 20px;
  }

  .car-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .car-box {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
  }

  .car-box img {
    width: 100%;
    margin-top: 1px;
    margin-bottom: 5px;
    height: auto;
    max-width: 300px;
  }
  
    .z350-wrapper {
    transform: translateY(-30px);    
        
    }

   .text {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 20px;
    transform: translateY(-20px);
  }
  
   .text-350 {
      font-size: 1.2rem;
      margin-top: 10px;
      margin-bottom: 20px;
      transform: translateY(20px);
}

  .bottom-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 5px;
  }

  .bottom-links a {
    text-decoration: none;
    color: #0077cc;
    font-size: 20px;
    font-weight: bold;
  }
  
  .left-link {
    margin-left: 1px;
    font-size: 10px;  
      
  }
  
  .right-link {
    margin-right: 7px;
    margin-top: 20px;
    font-size: 10px;  
      
  }
}