h2,
body {
    font-family: 'Roboto', sans-serif;
}
#contactForm {
    padding-bottom: 40px;
    font-family: 'Roboto', sans-serif;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
textarea {
    height: 120px;
    resize: vertical;
}
.error {
    color: #e74c3c;
    font-size: 0.9em;
    margin-top: 5px;
}
button {
    background-color: #c8102e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    margin: 20px auto 0;
}
button:hover {
    background-color: #2980b9;
}
.g-recaptcha {
    margin: 15px 0;
}
.success-message {
    color: #27ae60;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    display: none;
}