.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-content {
    width: 350px;
    height: 350px;
    position: relative;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-modal-content img {
    width: 350px;
    height: 350px;
    object-fit: contain;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.contact-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.contact-modal-close:hover {
    opacity: 0.8;
}