body {
    font-family: Arial, sans-serif;
    color: #7f2549;
}

.contact-form {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-form label {
    display: block;    
    margin-bottom: 0.5em;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.6em;
    margin-bottom: 1.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    color: black;
}

.contact-form textarea {
    resize: vertical;
}

@media screen and (max-width: 600px) {
  .contact-form {
    margin: 1em;
    padding: 2em;
  }
}
