* {
    box-sizing: border-box;
}
.hpb-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hide initially */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.hpb-popup-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}
.hpb-popup-content {
    background: white;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}
.hpb-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.hpb-popup-content img {
    max-width: 100%;
    border-radius: 5px;
}
.hpb-popup-content h2 {
    margin: 10px 0;
}
.hpb-popup-content p {
    margin-bottom: 15px;
}