/* RESET E LAYOUT CONTENITORE */
.step_block_container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  gap: 20px !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 20px auto !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

/* SINGOLI BLOCCHI (3 COLONNE) */
.step_block_container .sbsblock {
  flex: 1 1 0% !important; /* Forza i 3 blocchi ad avere la stessa larghezza */
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 20px !important;
  background-color: #2b3a55 !important; /* Sostituisci con il tuo colore di sfondo */
  border-radius: 6px !important;
  box-sizing: border-box !important;
  color: #ffffff !important;
}

/* ADATTAMENTO RESPONSIVE PER TABLET E MOBILE */
@media (max-width: 991px) {
  .step_block_container {
    flex-wrap: wrap !important;
  }
  
  .step_block_container .sbsblock {
    flex: 1 1 100% !important; /* Su schermi piccoli si incolonnano */
    margin-bottom: 15px !important;
  }
}