.contact-form {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin: 1em auto;
    font-family: Arial, sans-serif;
    float: left;
    display: block;
    position: relative;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 8px 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
}

.confirmation-message {
    padding: 20px;
    background-color: #e7f7ec;
    border: 1px solid #b5e0c9;
    border-radius: 5px;
    margin-top: 20px;
}
.confirmation-message h2 {
    color: #2e7d32;
}