/* General styling for the form */ 
.wpcf7-form {
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Enhancing readability of headings, labels, and text */
.wpcf7-form h2,
.wpcf7-form label,
.wpcf7-form p {
    color: #333; /* Dark color for high contrast */
    font-weight: bold; /* Making text bold */
    text-align: left;
}

/* Styling input fields to ensure text is easy to read */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
    color: #333; /* Dark color for better readability */
    background-color: #fff; /* White background for contrast */
    font-weight: bold; /* Bold text for better readability */
}

/* Styling for the submit button */
.wpcf7-form input[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #fff;
    color: #333; /* Dark text for visibility */
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #ddd; /* Light grey for hover effect */
}
