

/* تنسيق فورم اتصل بنا */
.horizontal-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
 
.form_column {
  flex: 1 1 70%;
  padding: 40px 30px;
  background: #fafafa;
}
 
.info_column {
  flex: 1 1 30%;
  background: linear-gradient(to bottom right, #6a3fad, #673ab7);
  color: white;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.info_column h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
 
.info_column p {
  margin: 10px 0;
  font-size: 14px;
}
 
.info_column i {
  margin-left: 8px;
}
 
.form_column .webform-submission-form input,
.form_column .webform-submission-form textarea {
  border-radius: 20px;
  padding: 10px 15px;
  border: 1px solid #ccc;
}
 
.form_column .webform-button--submit {
  background-color: #0084bd;
  color: white;
  padding: 10px 30px;
  border-radius: 20px;
  border: none;
}