.contact-form, .contact-info {
    background-color: #fff;
    padding: 20px;
}

.contact-form h2 {
    font-size: 24px;
    color: #d76a28;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-form p {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background-color: #d76a28;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #c46524;
}