@charset "utf-8";

/* 내용관리 */
#ctt {margin:10px 0;padding:20px;background:#fff}
.ctt_admin {text-align:right}
#ctt header h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ctt_con {padding:10px 0;line-height:1.6em}
#ctt_con img{max-width:100%;height:auto}
.ctt_img {text-align:center}


:root {
            --primary-color: #1a365d; /* 기업 느낌의 네이비 톤 */
            --text-color: #333333;
            --text-light: #555555;
            --bg-color: #f8f9fa;
            --border-color: #e2e8f0;
        }

    
        .privacy-container {
            width: 100%;
            margin: 0 auto;
            background: #ffffff;
            padding: 40px 50px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
			line-height:1.6
        }

        /* 제목 스타일 */
        .ph1 {
            font-size: 28px;
            color: var(--primary-color);
            text-align: center;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 20px;
            margin-bottom: 30px;
			font-weight:600
        }

        .ph2 {
            font-size: 20px;
            color: var(--primary-color);
            margin-top: 50px;
            margin-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
			font-weight:600
        }

        .ph3 {
            font-size: 16px;
            color: #2c5282;
            margin-top: 25px;
            margin-bottom: 10px;
			font-weight:600
        }

        .p1 {
            margin-bottom: 15px;
            color: var(--text-light);
			line-height:1.6
        }

        /* 리스트 스타일 */
        ul.pv, ol.pv {
            margin-bottom: 20px;
            color: var(--text-light);
        }
		
		ol.pv li {   display: list-item;    unicode-bidi: isolate; list-style-type: decimal;}

        ul.pv li {
            margin-bottom: 2px;
        }

        .toc-list {
            background-color: #f1f5f9;
            padding: 25px 25px 25px 45px;
            border-radius: 8px;
            margin-bottom: 40px;
		    list-style-type: decimal;
        }

        /* 반응형 테이블 스타일 */
        .table-responsive {
            width: 100%;
            overflow-x: auto;
            margin-bottom: 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        table.pv {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px; /* 모바일에서 스크롤을 유도하기 위한 최소 너비 */
        }

        table.pv th, table.pv td {
            border: 1px solid var(--border-color);
            padding: 12px 15px;
            text-align: left;
            font-size: 14px;
        }

        table.pv th {
            background-color: #f8fafc;
            font-weight: 600;
            color: var(--primary-color);
            text-align: center;
        }

        /* 연락처 박스 스타일 */
        .contact-box {
            background-color: #f8fafc;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .contact-box ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .contact-box li {
            margin-bottom: 5px;
        }

        .footer-date {
            margin-top: 50px;
            text-align: right;
            font-weight: bold;
            color: var(--primary-color);
        }

        /* 반응형 미디어 쿼리 (모바일 화면) */
        @media screen and (max-width: 768px) {
         

            .privacy-container {
                padding: 25px 20px;
            }

            .ph1 {
                font-size: 24px;
            }

            .ph2 {
                font-size: 18px;
            }

            .toc-list {
                padding: 20px 20px 20px 35px;
            }
        }