.amato-contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Roboto', sans-serif;
}
.amato-contact-form input,
.amato-contact-form select,
.amato-contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}
.amato-contact-form button {
    background: #0073aa;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}
.amato-contact-form button:hover {
    background: #005177;
}
.amato-success-message, .amato-error-message {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.amato-success-message { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.amato-error-message { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
