/* ============================================
   Privacy 페이지 스타일
   ============================================ */

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

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

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

.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;
}

/* 개인정보 섹션 */
.privacy-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.privacy-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.privacy-content {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.privacy-content > p {
    font-size: 16px;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.7;
}

.privacy-content ul {
    margin: 20px 0;
    padding-left: 28px;
}

.privacy-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 8px;
}

.privacy-content li::marker {
    color: #1E3A8A;
}

.privacy-content strong {
    color: #1a1a2e;
    font-weight: 700;
}

.privacy-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 24px 0 12px;
}

.privacy-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px;
}

/* 하이라이트 박스 */
.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #1E3A8A;
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.highlight-box.warning {
    border-left-color: #F59E0B;
    background: #fffbf0;
}

.highlight-box.success {
    border-left-color: #4CAF50;
    background: #E8F5E9;
}

.highlight-box-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box-content {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* 다크모드 스타일 */
body.dark-mode {
    background: rgb(32, 33, 37) !important;
}

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

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

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

body.dark-mode .privacy-section {
    background: rgb(42, 42, 45);
    border-color: rgba(148, 163, 184, 0.1);
}

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

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

body.dark-mode .privacy-content > p {
    color: #94a3b8;
}

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

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

body.dark-mode .privacy-content h4 {
    color: #94a3b8;
}

body.dark-mode .highlight-box {
    background: rgb(42, 42, 45);
    border-left-color: #1E3A8A;
}

body.dark-mode .highlight-box.warning {
    border-left-color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
}

body.dark-mode .highlight-box.success {
    border-left-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

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

body.dark-mode .highlight-box-content {
    color: #94a3b8;
}

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

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

    .page-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .privacy-section {
        padding: 24px;
        margin-bottom: 24px;
    }

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