#jm-contact-form { max-width: 500px; margin: 2rem auto; display: flex; flex-direction: column; gap: 1rem; }
#jm-contact-form input, #jm-contact-form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}
#jm-contact-form textarea {
    min-height: 8rem;
    height: auto;
    font-size: 1rem;
    resize: vertical;
}
#jm-contact-form button {
    padding: 0.5rem 1rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#jm-form-response {
    display: none;
    color: green;
    font-weight: bold;
    text-align: center;
}
