/* 정보 페이지 스타일 (개인정보처리방침 등) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* 컨테이너 */
.info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    min-height: 100vh;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* 제목 */
.info-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
}

/* 섹션 */
.info-section {
    margin-bottom: 28px;
}

.info-section h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.info-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.info-section ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.info-section a {
    color: #00a000;
    text-decoration: none;
}

.info-section a:hover {
    text-decoration: underline;
}

/* 반응형: 태블릿 */
@media (max-width: 1200px) {
    .info-container {
        border-left: none;
        border-right: none;
    }
}

/* 반응형: 모바일 */
@media (max-width: 640px) {
    .info-container {
        padding: 16px 12px;
    }

    .info-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
}
