.contact-form {
    background-color: #ffffff; /* White background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 50px auto;
}
.contact-form h2 {
    margin-bottom: 20px;
    color: #007bff;
}
.contact-form .form-group label {
    color: #343a40;
    font-weight: bold;
}
.contact-form .form-control {
    border-radius: 5px;
}
.contact-form button {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 5px;
}
.contact-form button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
.contact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 600px;
}
.contact-card h3 {
    margin-bottom: 20px;
    color: #007bff;
    font-weight: bold;
}
.contact-card p {
    color: #343a40;
    margin-bottom: 10px;
}
.contact-card p:last-of-type {
    margin-bottom: 0;
}