@charset "utf-8";

@charset "utf-8";

/* 서브페이지 공통 컨테이너 */
#sh_container {
    padding: 80px 0 100px;
    background-color: #f9f9f9;
}

#sh_container_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 섹션 타이틀 중앙 정렬 및 디자인 */
.sh_section_tit {
    text-align: center;
    margin-top: 50px;
	margin-bottom: 50px;
}

.sh_section_tit h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.sh_section_tit h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #0056b3; /* 포인트 컬러 */
}

/* 약관/개인정보 본문 박스 */
.sh_sub_content_box {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.sh_sub_content_box h3 {
    font-size: 18px;
    color: #111;
    font-weight: 600;
    margin: 35px 0 15px;
    padding-left: 12px;
    border-left: 4px solid #0056b3;
}

.sh_sub_content_box h3:first-child {
    margin-top: 0;
}

.sh_sub_content_box p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    word-break: keep-all;
}

.sh_sub_content_box .sub_point {
    color: #333;
    font-weight: 500;
}

/* 반응형 처리 */
@media screen and (max-width: 768px) {
    #sh_container { padding: 50px 0 70px; }
    .sh_section_tit h2 { font-size: 28px; }
    .sh_sub_content_box { padding: 30px 20px; }
}
