.angie-static-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.angie-static-popup-hidden {
    opacity: 0;
    visibility: hidden;
}

.angie-static-popup-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.angie-static-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333333;
    line-height: 1;
    padding: 0;
}

.angie-static-popup-close:hover {
    color: #ff0000;
}

.angie-static-popup-body h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: #111111;
}

.angie-static-popup-body p {
    margin: 0;
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
}
