body{
    background: linear-gradient(45deg, #c859ff 0%, #ffab8c 100%);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Map container styling */
.map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Map image styling */
.map-image {
    width: 100%;
    height: auto;
}

/* Pin styling */
.pin {
    position: absolute;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -100%);
    animation: grow 2s infinite ease-in-out; /* Applying grow animation */

    /* background-color: white;
    border-radius: 5%;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
}

/* Individual pin styling */
.pin img {
    max-width: 40px;
    height: auto;
    
}
.pin::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid white;
    position: relative;
    top: -1px;
}

/* Adjusting the pin positions */
.pin-1 {
    top: 34%;
    left: 64%;
}

.pin-2 {
    top: 86%;
    left: 56%;
}

.pin-3 {
    top: 18%;
    left: 52%;
}
@keyframes grow {
    0%, 100% {
        transform: translate(-50%, -100%) scale(1);
    }
    50% {
        transform: translate(-50%, -100%) scale(1.2); /* Grow to 1.2x size */
    }
}
#info-section {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

#info-section h2 {
    margin-bottom: 10px;
}