/* Banner Icon Styles */
.banner-icon-container {
  position: relative;
}

.banner-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  z-index: 10;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.banner-icon:hover {
  transform: translate(-50%, -50%) scale(0.9);
}

@media (max-width: 768px) {
  .banner-icon {
    width: 80px;
    height: 80px;
  }
}
