/* ====== Image Section Styles ====== */
.image-grid {
  background: #fff;
  margin: 70px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  display: flex;
  justify-content: center;
  gap: 120px;             /* space between images */
  max-width: 1400px;     /* section limit */
  width: 100%;
  flex-wrap: wrap;       /* wrap on smaller screens */
}

.image-container img {

  object-fit: cover;     /* keeps images clean */
  border-radius: 4px;    /* optional rounding */
}
