.popup-overlay {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    overflow-y: auto;
}

.popup-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.popup-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px 10px;
    border-radius: 50%;
}

.popup-close:hover {
    background-color: #f0f0f0;
}

.popup-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
}

.popup-content h2 {
    color: #8B2942;
    margin-bottom: 20px;
    text-align: center;
}

.popup-text {
    max-height: 650px;
    overflow-y: auto;
    padding-right: 10px;
}

.popup-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.popup-text ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.popup-text li {
    margin-bottom: 10px;
}

.popup-text li strong {
    color: #8B2942;
} 