.inquiry {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, #ffeffd 0%, #eefeff 100%);
}

.inquiry-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  height: 400px;
}

.section-label {
  display: block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-bottom: 20px;
}

.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
}

.checkbox-group .checkbox,
.radio-group .checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.enquiry-form {
  width: 60%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-form {
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  margin-bottom: 20px;
  border: none;
  background: var(--secondary-color);
  font-size: 16px;
  outline: none;

  box-sizing: border-box;
}

.contact-form textarea {
  height: 130px;
}

.contact-form .row {
  display: flex;
  gap: 10px;
}

.inquiry-img-wrapper {
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-img {
  width: 320px;
  height: 383px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .checkbox-group {
    grid-template-columns: repeat(3, 1fr);
  }
  .inquiry-img-wrapper {
    width: 100%;
  }

  .enquiry-form {
    width: 100%;
  }

  .inquiry-wrapper {
    flex-direction: column;
    height: auto;
  }

  .inquiry-form {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-form {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
  }
}
