@media (max-width: 768px) {

  .section-container {   /* 👈 이걸로 바꿔야 함 */
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .info-card {
    width: 100% !important;
  }
  
  .select-box {
    width: 100% !important;
  }

  .field.small {
    width: 100% !important;
  }
  
  .overlay-text {
   padding: 20px !important;
  }
  

  
    .submit-btn {
    padding: 18px !important;
    font-size: 16px !important;
  }

}

.company-title li {
  position: relative;
  padding-left: 14px;

}

.info-card p {
	margin-bottom: 5px;
}

.company-title .logo {
  width: 120px;   /* 원하는 크기 */
  height: 55px;   /* 원하는 높이 */

  background: url('/html/images/logo/LOGO_Type_White.png') no-repeat;
  background-size: contain;  /* 👈 핵심 */
}


.m-b-20 {
	margin-bottom: 20px !important;
}

.m-b-25 {
	margin-bottom: 25px;
}
.m-b-128 {
	margin-bottom: 128px;
}

.company-title li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}


.work-history {
	width: 260px !important;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 65px;
  align-items: flex-start;
}

.info-card {
  width: 593px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.overlay-text {
  position: absolute;
  padding: 60px 0 60px 60px; 
  inset: 0;
  color: #fff;
}

.form-group textarea {
	height: 265px;
	width: 100%;
	border: 1px solid #D7D7D7;
	border-radius: 5px;
}

.form-group textarea,
.form-group input {
	padding-left: 15px;
}



.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #777777;
  font-weight:400;
  font-size: 16px;
}

.consult-title {
	position: relative;
    display: inline-block; /* 중요 */
    padding-left: 15px;
}

.consult-title::before {
	content: "";
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    top: 50%;
    width: 5px;
    height: 28px;
    background-color: #433CC2;
}


.hyphen {
	width: 8px;
	margin-top: 10px;
	color: #777777;
	
}

.form-group .phone {
	width: 100px;
}

.select-box {
  position: relative;
  width: 260px;
  height: 50px;
}

/* 화살표 커스텀 */
.select-box::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);

  width: 12px;
  height: 12px;

  background: url('/html/images/help/arrow-down.png') no-repeat center;
  background-size: contain;

  pointer-events: none;
}


.select-box select {
  color: #777777;
  padding-left: 15px;
  font-size: 16px;
}

.consult-left {
  flex: 1;
}

.section {
	margin: 70px 0 150px 0;
}

.separate {
	max-width: 1200px;
	width: 100%;
    border-top: 1px solid #111111;
    margin: 0 auto;
}

.left img {
  width: 100%;
  border-radius: 5px;
}

.consult-right {
  flex: 1;
}

.form-group {
  margin-bottom: 30px;
}


.form-group input {
	height: 50px;
}

.form-group label {
  display: block;
   margin-bottom: 8px;
}

.form-group input[type='checkbox'] {
	display: inline-block;
	width: 20px;
	height: 20px;
}


.form-group input,
.form-group select {
	border: 1px solid #D7D7D7;
	border-radius: 5px;
  width: 100%;
}


.row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.m-b-30 {
	margin-bottom: 30px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field.small {
  width: 85px;
}

.checkbox-group {
  display: flex;
  align-items: center; /* 👈 세로 정렬 */
  gap: 15px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 5px;
} 

.phone-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-wrap input {
  flex: 1;
}

.submit-btn {
  width: 100%;
  padding: 18px 150px;
  background: #433CC2;
  color: #fff;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  border: none;
}


.require::after {
	content: "*";
	margin-left: 5px;
	color: #D02727;
	font-weight: 700;
	font-size: 18px;
}

@media (max-width: 768px) {

  .consult-container {
    flex-direction: column;   /* ⭐ 핵심 */
    gap: 30px;
  }

  .consult-left img {
    height: auto;
  }

  .phone-wrap {
    gap: 5px;
  }

}
