/* Container background and spacing */
.bg-222 {
  background-color: #222;
  padding: 60px 20px;
  color: white;
}

/* Heading styling */
.heading {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 40px;
}

/* Form fields */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  margin-bottom: 10px;
  background-color: #fff;
  color: #000;
}

.contact-form textarea {
  resize: vertical;
}

/* Submit button */
.btn-orange-solid {
  background-color: #f15a24;
  color: white;
  padding: 10px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn-orange-solid:hover {
  background-color: #d74d1c;
}

/* Contact info text and icons */
.contact-form i.bi {
  color: #f15a24;
  vertical-align: middle;
  font-size: 1.5rem;
}

.contact-form p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: white;
}

.contact-form a {
  color: #fff;
  text-decoration: underline;
}

/* ReCAPTCHA disclaimer */
.recaptcha-text-light {
  color: #ccc;
  font-size: 0.75rem;
  color: #aaa;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrapper .form-control {
  width: 100%;
}

.contact_us_name {
  margin: 0 auto;
}

.contact_us_email {
  margin: 0 auto;
}

.contact_us_phone {
  margin: 0 auto;
}

.contact_us_message {
  margin: 0 auto;
}

.contact-form img {
  max-width: 300px;
  height: auto;
  margin-top: 20px;
  border-radius: 5px;
  display: block;
}

/* Responsive layout */
@media (max-width: 768px) {
  .contact-form {
    padding: 0;
  }

  .contact-form .col-md-6 {
    margin-bottom: 40px;
  }
}
