/* Make contact message textarea taller — very specific selectors */
form#contact-form textarea,
#contact-form textarea,
textarea[name="message"],
.form-contact textarea,
.contact-form textarea {
  min-height: 220px !important; /* change px as you like */
  height: auto !important;
  resize: vertical; /* allow user to resize vertically if desired */
  line-height: 1.4;
  padding: 10px;
  box-sizing: border-box;
}
