.column-left {
  float: left;
  width: 48%; /* Adjust width as needed */
  margin-right: 2%; /* Add some spacing between columns */
}

.column-right {
  float: left;
  width: 48%; /* Adjust width as needed */
}

/* Clearfix for parent container to prevent layout issues */
.wpcf7-form {
  overflow: hidden;
}
.clr{
  clear: both;
}
.column-full{
  width: 98%;
  float: none;
}
.wpcf7-form .wpcf7-submit{
    background-color: #fff;
    border: 2px solid #02528A;
    border-radius: 30px;
    color: #02528A;
    padding: 15px 30px;
    width: 200px;
}
.wpcf7-form .wpcf7-submit:hover{
  background-color: #02528A;
  color: #fff;
}
.wpcf7-file{
  width: 100%;
  padding: 15px;
  background: #fff;
}
@media (max-width: 768px) {
  .column-left,
  .column-right {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}