.interactive-hotspots-container {
    max-width: 100%;
    margin: 20px 0;
}

.hotspot-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    /* border-top: 2px solid #0C3B67; */
    /* border-bottom: 2px solid #0C3B67; */
}

.hotspot-main-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.hotspot-pin {
    position: absolute;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.hotspot-marker {
    display: block;
    width: 12px;
    height: 12px;
    background: #0C3B67;
    border: 1px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    animation: pulse 2s infinite;
}

.hotspot-pin.active .hotspot-marker {
    background: #E81F4B;
    animation: none;
    box-shadow: 0 0 0 3px #E81F4B4d;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 #0C3B67b3; }
    70% { box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #E81F4Be6;
    color: white;
    padding: 30px;
    border-radius: 0px;
    min-width: 550px;  /* reduce fixed width for responsiveness */
    max-width: 90vw; 
    display: none;
    z-index: 9999999;
    box-shadow: 0 4px 12px #E81F4B4d;
        white-space: normal; /* allow wrapping */
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #E81F4Be6 transparent transparent transparent;
}

.hotspot-tooltip h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 400;
}

.hotspot-tooltip h5 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #fff;
    font-weight: normal;
}

.hotspot-tooltip p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.hotspot-content-area {
    margin-top: 20px;
    padding: 40px 20px 20px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.hotspot-content h3 {
    margin: 0 0 5px 0;
    color: #0C3B67;
    font-weight:400;
}

.hotspot-content h5 {
    margin: 0 0 30px 0;
    color: #E81F4B;
    font-weight: 700;
}

.hotspot-content p {
    margin: 0;
    color: #231F20;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hotspot-tooltip {
        min-width: 150px;
        max-width: 250px;
        font-size: 12px;
    }
    
    .hotspot-marker {
        width: 16px;
        height: 16px;
    }
}