/* Base Styles */
body {
    font-family: 'Times New Roman', Times, serif; /* Changed to Times New Roman */
    background-color: red; /* Background color */
    color: black; /* Text color */
    margin: 0;
    padding: 20px;
}

/* Header Styles */
h1 {
    color: #3498db; /* Primary color */
    text-align: center;
}

/* Form Styles */
form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto; /* Center the form */
}

/* Input and Textarea Styles */
input[type="text"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0
