.contact-box {
  background-color: #D5642B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  color: white;
  height: 180px;
  background-image: url('queries.png');
  background-repeat: no-repeat;
}
.contact-text {
  margin-left: 10%;
}
.contact-btn {
  margin-right: 10%;
}

.contact-box h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
}

.contact-box h3 span {
  font-weight: 800;
  color: black;
}

.query-button {
  display: inline-block;
  background-color: #FAA226;
  color: #fff;
  padding: 15px 25px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #fba800;
}
@media (max-width: 430px) {
  .contact-box{
    justify-content: center;
  }
  .contact-box h3 {
    font-size: 20px;
  }
  .contact-btn{
    margin-bottom:20px;
  }
}