#top-area {
    display: block;
    display: none;
}

/* General container styling */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Each row in the form */
.form-row {
    display: flex;
    gap: 60px; /* Space between fields in the same row */
    margin-bottom: 20px; /* Space between rows */
}

/* Ensure labels and inputs take up equal space */
.form-row label {
    flex: 1; /* Distribute space equally */
}

/* Style for input fields */
.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

/* Textarea specific styling */
.form-row textarea {
    height: 0px;
    resize: vertical;
}

/* Submit button styling */
.form-row input[type="submit"] {
    width: auto; /* Adjust width to fit content */
    padding: 0px 0px; /* Smaller padding */
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0px; /* Smaller font size */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

/* Hover state for the submit button */
.form-row input[type="submit"]:hover {
    background-color: #ffffff; /* Purple color on hover */
}

.map-sidebar textarea {
    height: 200px;
}

.wpcf7-form input[type='submit']:not(.gem-button-wpcf-custom) {
    margin: 15px 85px 15px 0;
}

.custom-heading {
    font-family: 'Great Vibes', cursive;
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
    text-transform: none;
}