.request-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}
.request-form h2 {
    text-align: center;
    color: #0073aa;
}
.request-form input, .request-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.request-form button {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.request-form button:hover {
    background: #005580;
}
#response {
    text-align: center;
    margin-top: 10px;
}
