#custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#custom-popup {
    position: relative;
    background-color: #fff;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.custom-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    z-index: 10;
    line-height: 1;
}

.custom-popup-content {
    display: flex;
    flex-wrap: wrap;
    max-height: 80vh;
    overflow-y: auto;
}

.custom-popup-image {
    flex: 0 0 40%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-popup-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.custom-popup-text {
    flex: 0 0 60%;
    padding: 30px;
    box-sizing: border-box;
}

.custom-popup-title {
    font-size: 24px;
    margin: 0 0 10px;
    color: #333;
}

.custom-popup-subtitle {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 20px;
    color: #666;
}

.custom-popup-description {
    color: #444;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .custom-popup-image,
    .custom-popup-text {
        flex: 0 0 100%;
    }
    
    .custom-popup-image {
        max-height: 200px;
    }
}