.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.contact-form h2 {
    margin-bottom: 20px;
}
.contact-form .form-group {
    margin-bottom: 15px;
}
.contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.contact-form .form-group textarea {
    resize: vertical;
    height: 100px;
}
.contact-form .form-group input[type="file"] {
    padding: 3px;
}
.contact-form .form-group .checkbox-group {
    display: flex;
    align-items: center;
}
.contact-form .form-group .checkbox-group input {
    width: auto;
    margin-right: 10px;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #ff0000;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}
.contact-form button:hover {
    background-color: #c01212;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.form-row .form-group {
    flex: 1;
    min-width: 150px;
}
