/* Super simple, clean, uniform contact form styling */
#contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    font-family: inherit;
}

#contact-form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
    background: #fff;
}

#contact-form textarea {
    resize: vertical;
}

#contact-form button {
    margin-top: 25px;
    padding: 12px 24px;
    background: #2e8b57;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

#contact-form button:hover {
    background: #246543;
}