.modal {
    display: none;
    /* caché par défaut */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}


.image-pc {
    display: block !important;
}

@media (max-width: 767px) {
    .image-pc {
        display: none !important;
    }
}
.close {
    font-size: 35px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
}

.cookie-banner button {
    margin-left: 10px;
    padding: 5px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#accept-cookies {
    background: #28a745;
    color: #fff;
}

#reject-cookies {
    background: #dc3545;
    color: #fff;
}