/* Example CSS for styling the Contact Us form */

/* Style for the main container */



/* Style for form labels */
label {
  font-weight: bold;
  color: #555;
}

/* Style for form inputs */
.form-control {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* Style for textarea */
.message {
  height: 150px;
}

/* Style for submit button */


/* Style for success and error messages */
.text-success {
  color: green;
}

.text-danger {
  color: red;
}

/* Style for the text center */
.text-center {
  text-align: center;
}

/* Style for the main content */
.main {
  padding: 20px;
}
