.form-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-contact label {
    font-weight: bold;
}

.form-contact input,
.form-contact textarea {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
}

.form-contact button {
    background: #0073e6;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

.form-contact button:hover {
    background: #005bb5;
}

/* Message de succès */
.message-success {
    color: green;
}

/* Message d'erreur */
.message-error {
    color: red;
}

#formResponse {
    margin-top: 1rem;
}