/* Style pour la pop-up */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.popup-content-container {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.popup-content {
    width: 100%;
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: -40px;
    right: -30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    z-index: 2001;
}

.popup-close:hover {
    color: #ff6b6b;
}

.popup-left {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.popup-right {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.popup-content h3 {
    margin-bottom: 15px;
    color: #333;
}

.popup-content p {
    color: #666;
    line-height: 1.5;
}

.popup-content iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 5px;
}

.popup-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}
