#contact-form-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

#contact-form-modal label {
    display: block;
    margin-bottom: 5px;
}

#contact-form-modal input,
#contact-form-modal textarea {
    width: 100%;
    margin-bottom: 10px;
}

#close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}