.column {
  float: left;
  width: 50%;
}

.column3 {
    float: left;
    width: 33%;
  }

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


@media screen and (max-width: 768px) {
        

        .column {
            width: 100%; /* Ensures each column takes full width when stacked */
        }

        .column3 {
    float: left;
    width: 100%;
  }
    }