.image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
}

.image-section img {
  width: 45%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.plus-sign {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6600;
}

@media (max-width: 768px) {
  .image-section {
    flex-direction: column;
  }

  .image-section img {
    width: 100%;
    height: 240px;
  }
}