* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 2rem;
  padding: 3rem 0;
}

.section-grid img {
  width: 100%;
}

.grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .section-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 85%;
  margin: 0 auto;
  padding: 3rem 0;
}

.section-hero ul {
  padding-left: 2rem;
}

.secondary-heading {
  font-size: 1.2rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1rem;
}

.primary-heading {
  font-size: 1.7rem;
  font-weight: 700;
}
