/* ============================================
   이용약관 페이지 스타일
   ============================================ */

/* ============================================
   1. 전역 리셋 및 기본 레이아웃
   ============================================ */

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100%;
}

body:not(.dark-mode) {
    background: #ffffff !important;
}

/* ============================================
   2. Legal 컨테이너
   ============================================ */

.legal-container {
    max-width: 1200px !important;
    width: 1200px !important;
    margin: 0 auto;
    padding: 48px 20px 80px;
    box-sizing: border-box;
}

/* ============================================
   3. 페이지 타이틀 및 서브타이틀
   ============================================ */

.page-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   4. Legal 섹션
   ============================================ */

.legal-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.legal-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.legal-section-content {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.legal-section-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section-content h3:first-child {
    margin-top: 0;
}

.legal-section-content p {
    margin-bottom: 16px;
}

.legal-section-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-section-content strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* ============================================
   5. Legal 소개 및 기타 요소
   ============================================ */

.legal-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section-content .item-row {
    margin-bottom: 12px;
}

.legal-section-content .item-label {
    font-weight: 600;
    color: #1a1a2e;
}

.legal-notice {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-top: 24px;
    padding: 20px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1E3A8A;
}

.legal-collection-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 48px;
    margin-bottom: 24px;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,.08);
}

/* ============================================
   6. 다크모드 스타일
   ============================================ */

body.dark-mode {
    background: rgb(32, 33, 37) !important;
}

body.dark-mode .legal-container {
    color: #f1f5f9;
}

body.dark-mode .page-title {
    color: #f1f5f9;
}

body.dark-mode .page-subtitle {
    color: #94a3b8;
}

body.dark-mode .legal-section {
    background: #2a2a2d;
    border-color: rgba(148, 163, 184, 0.1);
}

body.dark-mode .legal-section-title {
    color: #f1f5f9;
    border-bottom-color: rgba(148, 163, 184, 0.1);
}

body.dark-mode .legal-section-content {
    color: #94a3b8;
}

body.dark-mode .legal-section-content h3 {
    color: #f1f5f9;
}

body.dark-mode .legal-section-content strong {
    color: #f1f5f9;
}

body.dark-mode .legal-intro {
    color: #94a3b8;
}

body.dark-mode .legal-section-content .item-label {
    color: #e2e8f0;
}

body.dark-mode .legal-notice {
    color: #94a3b8;
    background: rgb(42, 42, 45);
    border-left-color: #1E3A8A;
}

body.dark-mode .legal-collection-title {
    color: #f1f5f9;
    border-top-color: rgba(148,163,184,.1);
}

/* ============================================
   7. 반응형 디자인
   ============================================ */

@media (max-width: 768px) {
    .legal-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto;
        padding: 20px 20px 80px;
        box-sizing: border-box;
    }

    .page-title {
        font-size: 28px;
    }

    .legal-section {
        padding: 20px;
    }

    .legal-section-title {
        font-size: 20px;
    }
}
