.him-component {
  margin: 0;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  padding: 20px;
}
.him-component .card-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}
.him-component .image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
}
.him-component .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.him-component .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #00cc66;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(0, 204, 102, 0.7);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 204, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 204, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 204, 102, 0);
  }
}
.him-component .info-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 15px;
  max-width: 80%;
  display: none;
  z-index: 10;
}
.him-component .info-card h3 {
  margin: 0 0 5px;
  font-size: 1.1em;
}
.him-component .info-card p {
  margin: 0;
  font-size: 0.95em;
  color: #333;
}
.him-component .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .him-component .cards-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .him-component .info-card {
    max-width: 90%;
    top: 10px;
    left: 10px;
    padding: 12px;
  }
  .him-component .info-card h3 {
    font-size: 1em;
  }
  .him-component .info-card p {
    font-size: 0.9em;
  }
}