@media screen and (max-width: 768px) {
  .parent-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;    /* Center horizontally */
    justify-content: center; /* Center vertically */
    text-align: center;     /* Centers text inside elements */
    width: 100%;
  }
}