img:not(.modal img):not(.lightbox img) {
  width: 100%;
  cursor: pointer;
  border-radius: 1rem;
}

h2 {
  font-size: 3rem;
}

.section_one {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.section_one .text {
  display: flex;
  flex-direction: column;
  width: 38rem;
  gap: 1rem;
  justify-content: center;
}

.section_one .img {
  justify-items: center;
  width: 80%;
  height: auto;
}

.section_two {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  margin-top: 2rem;
}

.section_two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section_three {
  display: grid;
  grid-template-columns: 1fr;
  height: 50%;
  object-fit: cover;
  margin-top: 1rem;
}

.section_four {
  gap: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 1rem;
}

/* ============= MEDIA QUERIES ============= */

/* Tablets (max-width: 900px) */
@media (max-width: 900px) {
  h2 {
    font-size: 2rem;
  }
  .section_one {
    grid-template-columns: 1fr;
    margin-top: 5rem;
    gap: 2rem;
  }
  .section_one .text {
    width: 100%;
    padding: 0 1rem;
    gap: 1rem;
  }
  .section_one img {
    width: 100%;
    margin: 2rem 0 0 0;
  }
  .section_two {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    gap: 1rem;
  }
  .section_three {
    margin-top: 1rem;
  }
  .section_four {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }
}

/* Phones (max-width: 600px) */
@media (max-width: 768px) {
  h2 {
    font-size: 1.3rem;
  }
  .section_one {
    grid-template-columns: 1fr;
    margin-top: 5rem;
    gap: 1rem;
  }
  .section_one .text {
    width: 100%;
    padding: 0 0.5rem;
    gap: 0.7rem;
  }
  .section_one img {
    width: 100%;
    margin: 1rem 0 0 0;
  }
  .section_two {
    grid-template-columns: 1fr;
    margin-top: 1rem;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .section_two img {
    margin-bottom: 1rem;
  }
  .section_three {
    margin-top: 0.5rem;
    padding: 0 0.5rem;
  }
  .section_four {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0 0.5rem;
  }
}

/* Extra Small (max-width: 400px) */
@media (max-width: 400px) {
  h2 {
    font-size: 1rem;
  }
  .section_one,
  .section_two,
  .section_three,
  .section_four {
    padding: 0 0.2rem;
  }
}
