.quick_counsel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 5%;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.quick_counsel .inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* PC 버전 타이틀 */
.quick_counsel .title {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

.quick_counsel .form_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* PC 버전 레이아웃 */
@media (min-width: 768px) {
  .quick_counsel .form_wrap {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .quick_counsel .input_row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .quick_counsel .input_row:first-child {
    flex: 1;
  }

  .quick_counsel .input_row:first-child select {
    width: 200px;
  }

  .quick_counsel .input_row:first-child input {
    flex: 1;
    min-width: 120px;
  }

  .quick_counsel .input_row:last-child {
    width: auto;
    white-space: nowrap;
  }
}

/* 모바일 버전 레이아웃 */
@media (max-width: 767px) {
  .quick_counsel .title {
    display: none;
  }

  .quick_counsel .form_wrap {
    flex-direction: column;
    gap: 8px;
  }

  .quick_counsel .input_row:first-child {
    display: flex;
    gap: 8px;
  }

  .quick_counsel .input_row:first-child select {
    width: 40%;
  }

  .quick_counsel .input_row:first-child input {
    width: 30%;
  }

  .quick_counsel .input_row:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
  }
}

/* 공통 스타일 */
.quick_counsel select,
.quick_counsel input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
}

.quick_counsel .privacy_wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
}

.quick_counsel .privacy_link {
  color: #6b76ff;
  text-decoration: underline;
}

.quick_counsel .submit_btn {
  background: #6b76ff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  max-width: 250px;
}

.quick_counsel .submit_btn:hover {
  background: #5561ff;
}

/* 모바일 폰트 사이즈 */
@media (max-width: 767px) {
  .quick_counsel select,
  .quick_counsel input,
  .quick_counsel .submit_btn {
    padding: 6px 12px;
    font-size: 14px;
  }

  .quick_counsel .privacy_wrap,
  .quick_counsel .privacy_link {
    font-size: 10px;
  }

  .quick_counsel .submit_btn {
    width: 40%;
  }
}
