.landscape {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: auto;
}
.landscape_container {
  position: relative;
  width: 100%;
}
.landscape_content {
  position: relative;
  width: 100%;
  overflow: hidden; 
}
.landscape_image {
  width: 100%;
  display: block;
  height: auto;
}
.hotspot {
  position: absolute;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 149, 0, 0.825);
  }
  50% {
    box-shadow: 0 0 25px 25px rgba(242, 148, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 148, 0, 0);
  }
}
.hotspot_icon {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F29400;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  animation: pulse 3s infinite;
}
.hotspot:hover .hotspot_icon {
  transform: scale(1.2);
}
.tooltip {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  width: 257px; 
  word-wrap: break-word;
  margin: 1rem;
}
.tooltip.show {
  opacity: 1;
}
.tooltip h4 {
  color: #F29400;
  font-size: 20px;
  margin-bottom: 0.5rem;
}
.tooltip p {
  font-size: 16px;
}
.tooltip-top {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip-right {
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}

.tooltip-left {
  top: 50%;
  right: 120%;
  left: auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 800px) {
  .hotspot:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
  }
  .tooltip_mobile {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .tooltip_mobile {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out 0.3s;
  }
  .tooltip_mobile.show {
    opacity: 1;
    visibility: visible;
  }
  .tooltip_mobile_content {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }
  .tooltip_mobile_content h4 {
    margin-top: 3rem;
    font-size: 24px;
    color: #F29400;
  }
  .tooltip_mobile_content p {
    color: #000;
    font-size: 22px;
    line-height: 1.3;
    margin-top: 0.5rem;
  }
  .hotspot {
    width: 23px;
    height: 23px;
  }
  .hotspot_icon {
    font-size: 17px;
    line-height: 21px;
  }
}

