
/* 페이지 컨테이너 스타일 */
.consultation-container {
    max-width: 1280px;
    margin: 25px auto;
   
}



.consultation_inside_section {
    display: flex;
    gap: 20px; /* ìš”ì†Œ ê°„ ê°„ê²© */
    width: 100%;
    max-width: 1280px;
    align-items: stretch; /* ì™¼ìª½ê³¼ ì˜¤ë¥¸ìª½ ë†’ì´ë¥¼ ë™ì¼í•˜ê²Œ ë§žì¶¤ */
}

.top_left {
    flex: 7; /* ì „ì²´ ë¹„ìœ¨ì˜ 70% */
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* ì•„ì£¼ ì—°í•œ ê·¸ë¦¼ìž */
}

.top_right {
    flex: 3.5; 
    border-radius: 10px;
    width: 35%;
    display: flex;
    flex-direction: column;
}




.text_line_box {
    width: 100%;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 15px;
}


.text_line_box .tel {
    font-size: 25px;
    font-weight: bold; /* 글자 굵게 */
    letter-spacing: -1px; /* 글자 간격 약간 좁게 */
}


.coustomer_center p {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
}



/* ✅ 고객센터 운영시간 목록 스타일 */
.customer-service-hours {
    list-style: none;  /* 기본 불릿 제거 */
    padding: 0;
    margin: 0;
}

.customer-service-hours li {
    font-size: 14px;
    color: #333;
    padding: 5px 10px;
 
    margin-bottom: 5px;
    background-color: #f8f8f8;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px; /* 아이콘과 텍스트 간격 */
}

/* ✅ 아이콘 추가 (선택 사항) */
.customer-service-hours li::before {
    content: "🕒"; /* 운영시간 아이콘 */
    font-size: 14px;
    color: red;
}





/* ✅ 카카오톡 상담 컨테이너 스타일 */
.kakao-consultation-box {
    background-color: #fef01b; /* 카카오톡 공식 컬러 */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 15px;

}

/* ✅ 제목 스타일 */
.kakao-consultation-box h2 {
    font-size: 20px;
    font-weight: bold;
    color: #3c1e1e; /* 카카오톡 텍스트 컬러 */
    margin-bottom: 15px;
}

/* ✅ 카카오톡 상담 버튼 */
.kakao-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3c1e1e; /* 카카오톡 버튼 컬러 */
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    gap: 8px;
    transition: background 0.3s ease;
}

/* ✅ 버튼 hover 효과 */
.kakao-button:hover {
    background-color: #2e1616;
}

/* ✅ 카카오톡 로고 스타일 */
.kakao-logo {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* 이미지 색상을 반전시켜 흰색으로 변경 */
}



.consultation-form-container {
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input:not([type="checkbox"]) {  /* ✅ 체크박스 제외 */
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.consultation-submit {
    width: 100%;
    background-color: red;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.consultation-submit:hover {
    background-color: #0056b3;
}





/* ✅ 체크박스와 문구 정렬 */
.consent-label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* ✅ 개인정보 처리방침 상세보기 링크 */
.privacy-link {
    color: red;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
}

/* ✅ 개인정보 처리방침 글상자 스타일 */
.privacy-text {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ccc;
}



.foteer-left-addres {
    background-color: #f8f8f8;
    border-radius: 5px;
    margin-bottom: 10px;
}

.foteer-left-addres p {
    font-size: 16px;
}


.foteer-left-addres span {
    font-size: 12px;
}



.text_line_box_end {
    width: 100%;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    
}


.text_line_box_end h2 {
    margin-bottom: 10px;
}




/* ✅ 반응형 (태블릿 & 모바일) */
@media screen and (max-width: 992px) {


    .consultation-container {
        max-width: 1280px;
        margin: 25px auto;
        padding: 0px 10px;
       
    }

    


    .consultation_inside_section {
        display: block;
        gap: 20px; 
        width: 100%;
        max-width: 1280px;
        align-items: stretch; 
    }



.top_left {
    flex: 0; 
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); 
    margin-bottom: 20px;
}


.top_right {
    flex: 3.5; 
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
}



/* ✅ X 닫기 버튼 스타일 */
.close-btn {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    width: 30px;  /* 버튼 크기 고정 */
    height: 30px; /* 버튼 크기 고정 */
}



}