#contact-us-main{
    color: black;
    width: 98%;
    margin: auto;
    height: auto;
    padding: 20px;
    border-radius: 15px;
    border-top: 4px solid #004789;
    border-bottom:4px solid #004789;
    box-shadow:0px 1px 2px 1px #004789;
}
#contact-us h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

#contact-us-2 .form {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact-us-2 .form-control {
    margin-bottom: 15px;
    font-size: 16px;
}

#contact-us-2 .form-control::placeholder {
    color: #999;
}

#contact-us-2 button[type="submit"] {
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

#contact-us-2 button[type="submit"]:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}