.consult-form-section {
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  background: white;
}

.consult-form-container {
  max-width: 600px;
  width: 100%;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: "Jost", sans-serif;
}

.consult-btn {
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: #171994;
  color: white;
  border: 2px solid transparent;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
}

.consult-btn:hover {
  color: #171994;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(#171994, #3a868f) border-box;
}