.contact-us-form-heading h2,
.contact-us-form-heading p {
  margin-top: 10px;
  text-align: center;
}

.contact-us-form-main-container {
  display: flex;
  gap: 30px;
}

.contact-us-form-left-container {
  width: 50%;
}

.contactus-label {
  margin-top: 12px;
  font-weight: bold;
  display: block;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

#generatedCaptcha {
  width: 120px;
  background: #eaeaea;
  border: none;
  text-align: center;
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: bold;
}

button[type="button"],
button[type="submit"] {
  background: #1993e3;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}
button[type="button"]:hover,
button[type="submit"]:hover {
  background: #145e87;
}
#captchaMsg {
  color: red;
  margin-bottom: 10px;
}
.contact-info h4 {
  margin-top: 24px;
  color: #1993e3;
}

.contact-us-form-right-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
  padding: 10px;
}

.contact-us-form-right-container h3 {
  font-weight: bold;
  line-height: 1.2em;
  margin: 0 0 1em 0;
  color: #2f2f2f;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.contact-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2f2f2f;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 10px;
  color: #fff;
}

.contact-us-iframe-container {
  margin-top: 30px;
}

@media (max-width: 1180px) {
  .contact-us-form-main-container {
    padding: 10px;
  }
}

@media (max-width: 990px) {
  .contact-us-form-left-container,
  .contact-us-form-right-container {
    width: 100%;
  }
  .contact-us-form-main-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-us-form-container > div {
    /* width: 720px; */
    margin: auto;
  }
}
