* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f0f0f0;
}

.full-img {
  width: 100%;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
  gap: 1rem;
}

.grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.heading {
  font-size: 1.3rem;
  font-weight: 700;
}

.text {
  font-size: 1rem;
}

@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .section-grid {
    grid-template-columns: 1fr;
  }
}
