body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f9f9f9;
}
.contact-form {
    max-width: 680px;
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h2 {
    text-align: center;
    color: #333;
}
label {
    display: block;
    margin-top: 15px;
    color: #555;
}

/* , input[type="submit"] */
textarea, input[type="text"] {
    width: 96%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    margin: 10px auto;
}
input[type="submit"]:hover {
    background-color: #45a049;
}
p{
    text-align:center; 
    color:#888;
}