#welcomePopup img{
    width:150px;
}
#welcomePopup h3{
    margin:20px 0px 10px;
}
#welcomePopup h4 {
    margin-top: 10px;
}
#welcomePopup p {
    margin-bottom: 0px;
}
.popup-close{
    position:absolute;
    top:10px;
    right:15px;
    border:none;
    background:none;
    font-size:28px;
    line-height:1;
    cursor:pointer;
    color:#666;
}
.popup-close:hover{
    color:#000;
}
#popupOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999999;
}

#welcomePopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    width: 55%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 99999999;
    text-align: center;
}
@media (max-width:1200px){
#welcomePopup {
    width: 90%;
}
.popup-scroll {
    min-height: 200px;
    max-height: 450px;
    overflow-y: scroll;
}
}