.over-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro {
  background-color: #f3f1e8;
  color: #131313;
  padding: 7% 10%;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (min-width: 1024px) {
  .intro {
    flex-direction: row;
    gap: 6rem;

    padding: 70px 100px;
  }
}

.pink-text {
  color: #ff16b5;
}

.checklist-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
  width: 100%;
  max-width: 1080px;
}

.image-collage {
  flex: 1 1 400px;
  aspect-ratio: 1 / 1;
  position: relative;
  display: grid;
  place-items: center;
  max-width: 500px;
  width: 100%;
  transform: scale(1);
}

.image-collage .img {
  width: 55%;
  max-width: 260px;
  max-height: 260px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  position: absolute;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.image-collage .img1 {
  transform: translate(-40%, -40%) rotate(-5deg);
  z-index: 3;
}
.image-collage .img2 {
  transform: translate(47%, -42%) rotate(10deg);
  z-index: 2;
}
.image-collage .img3 {
  transform: translate(-30%, 40%) rotate(-4deg);
  z-index: 1;
}
.image-collage .img4 {
  transform: translate(40%, 50%) rotate(3deg);
  z-index: 2;
}

.checklist {
  flex: 1 1 300px;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.checklist img {
  width: 66px;
}
