.grid-container-main {
  display: grid;
  width: 99%;
  margin: auto;
  justify-content: center;
  /* This centers the grid items horizontally */
}

.contact-container {
  width: 70%;
  /* Adjust this width as needed */
  margin: auto;
  /* This centers the content within the grid item */
}

@media print {
  .no-print {
    display: none;
  }

  .grid-container-main {
    grid-template-columns: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
}
