.jotform-section {
    max-width: 400px; /* Set a maximum width */
    margin: 0 auto; /* Center the section */
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jotform-section img{
    text-align: center; /* Center the heading */
    display: block;
    margin: 0 auto;
}

.contact-section {
    max-width: 650px; /* Set a maximum width */
    margin: 0 auto; /* Center the section */
    padding: 20px;
    margin-bottom: 20px;
}

.contact-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center; /* Center the heading */
}

.jotform-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center; /* Center the heading */
}

.jotform-section p {
    font-size: 15px;
    margin-bottom: 15px;
    text-align: center; /* Center the heading */
}

/* Form field styling */
.jotform-form-row {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.jotform-form-label {
    width: 200px; /* Fixed label width */
    font-size: 16px;
    margin-right: 10px;
}

.jotform-form-input,
.jotform-form-input-file,
.jotform-form-textarea 
{
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.jotform-form-input[type="color"] {
    height: 40px;
    padding: 0;
}

/* Adjust input size and make them smaller */
.jotform-form-input,
.jotform-form-input-file,
.jotform-form-textarea {
    padding: 8px;
}

/* Submit button styling */
.jotform-submit-section {
    text-align: center;
}

.jotform-submit {
    background-color: #555; /* Grey color for the button */
    color: #fff;
    border: none;
    padding: 10px 20px; /* Reverted to previous size */
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center; /* Center the button */
    display: block;
    margin: 0 auto;
}

.jotform-submit:hover {
    background-color: #444; /* Darker grey on hover */
}