/* -----------------------
    히어로 섹션
------------------------ */
.hero {
  display: none;
}


/* -----------------------
    폼
------------------------ */

.form-field-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-field,
.form-textarea,
.privacy-box {
  width: 100%;
  border: 1px solid #D5D5D5;
  background: #FCFDFD;
  margin-bottom: 24px;
  padding: 18px 16px;
  font-size: 14px;
  border-radius: 4px;
}

.form-field::placeholder,
.form-textarea::placeholder {
  color: #999;
}

.form-field {
  height: 40px;
}

.form-textarea {
  min-height: 200px;
  resize: none;
  overflow-y: scroll;
  line-height: 1.5;
}

.privacy-box {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  white-space: pre-line;
  height: 300px;
  overflow-y: scroll;
}


 /* 동의 체크박스 영역 */
.agree-wrap {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.agree-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #666;
}

.agree-wrap label {
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}

/* 버튼 */
.contact-submit-wrap {
  bottom: 0;
  padding: 8px 0 24px;
  margin-top: 24px;
}

.contact-submit {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 16px;
}

.contact-submit button {
  width: 100%;
  height: 52px;
  border-radius: 4px;
  border: none;
  background: #333;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.contact-submit button:active:not(:disabled) {
  opacity: 0.85;
}

.contact-submit button:disabled {
  background: #555;
  opacity: 0.5;
  cursor: default;
}




.contact-submit button:active {
  opacity: 0.85;
}


/* -----------------------
    데스크톱 레이아웃
    (768px 이상)
------------------------ */
@media (min-width: 769px) {
  /* 히어로 이미지 */
  .hero {
    display: block;
    position: relative;
    background-color: #fff;
    margin: 0 auto;
    height: 300px;
  }
  .hero img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .form-field-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .form-field {
    height: 48px;
  }

  .contact-inner {
    margin-bottom: 40px;
  }
 
}