// Contact Form 7

.cf7-custom-form {
  background: #e4d6bd;
  padding: 20px;
}

.cf7-custom-form label {
  display: block;
  margin-bottom: 0px;
  font-size: 14px;
  color: #333;
}

.cf7-custom-form input,
.cf7-custom-form select,
.cf7-custom-form textarea {
  width: 100%;
  padding: 12px;
  background: #eee;
  border: 1px solid #999;
  border-radius: 3px;
  margin-bottom: 0px;
}

.cf7-row {
  display: flex;
  gap: 15px;
}

.cf7-col {
  width: 50%;
}

.cf7-custom-form textarea {
  height: 120px;
}

.cf7-custom-form input[type="submit"] {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
}

.cf7-custom-form input[type="submit"]:hover {
  background: #333;
}

.cf7-disclaimer {
  font-size: 15px;
  color: #4E4E4E;
  margin-top: 10px;
}

// About Page Form

.custom-consultation-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 25px;
  background: #f5f6f7;
  border-radius: 10px;
  font-family: Arial, sans-serif;
}

.custom-consultation-form h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.form-group {
  width: 100%;
  margin-bottom: 5px;
}

.form-row .form-group {
  width: calc(50% - 7.5px);
}

.form-group label {
  display: block;
  margin-bottom: -20px;
  font-size: 13px;
  color: #333;
}

.custom-consultation-form input,
.custom-consultation-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.custom-consultation-form textarea {
  min-height: 50px;

}

.form-submit {
  margin-top: 10px;
}

.custom-consultation-form input[type="submit"] {
  width: 100%;
  background: #000000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-consultation-form input[type="submit"]:hover {
  background: #111111;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row .form-group {
    width: 100%;
  }
}