/**
 * page.css
 * 정적 페이지 스타일 (이용약관, 개인정보처리방침 등)
 * [디자인팀] 대표 양식 적용 - 2026-01-04
 */

/* 컨텐츠 영역만 스타일링 (헤더/푸터는 공통 CSS 사용) */

.page-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.content-card {
    background: white;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.page-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

.page-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #4a4a6a;
    margin: 30px 0 15px;
    padding-left: 12px;
    border-left: 4px solid #667eea;
}

.page-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    margin: 15px 0 15px 25px;
}

.page-content li {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.page-content li::marker {
    color: #667eea;
}

.page-content strong {
    color: #4a4a6a;
    font-weight: 600;
}

.page-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.page-content a:hover {
    border-bottom-color: #667eea;
}

.page-meta {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e8e8f0;
    font-size: 13px;
    color: #999;
    text-align: right;
}

/* 반응형 */
@media (max-width: 768px) {
    .page-container {
        margin: 20px auto;
    }

    .content-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .page-content h2 {
        font-size: 20px;
    }

    .page-content h3 {
        font-size: 16px;
    }
}
