
        
.contact-us .formheader {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-us section {
    background-color: #f9f9f9;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.contact-us .formrow {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.contact-us label {
    font-weight: bold;
}

.contact-us input[type="text"],
.contact-us input[type="email"],
.contact-us select,
.contact-us textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .contact-us .formrow {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .contact-us .col-sm-12 {
        width: 100%;
    }
}

.contact-us #submitButton {
    display: inline-block;
    margin-right: 10px;
    float: none;
}

.contact-us .submit-button {
    display: inline-block;
    margin-right: 10px;
    float: none;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.contact-us .submit-button:hover {
    background-color: #0056b3;
}

.contact-us .submit-button.pending {
    background-color: #b0b0b0;
    color: #666; 
    cursor: not-allowed;
    opacity: 0.6;
}

