/* 隐私政策页面特有样式 */
.privacy-content {
    padding-top: 80px;
    padding-bottom: 4rem;
}

.privacy-content h1 {
    margin: 0 0 30px 0;
    color: #333;
    font-size: 2em;
    font-weight: 700;
}

.privacy-content h2 {
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5em;
    font-weight: 600;
}

.privacy-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-content .last-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-content .contact-email {
    color: #FF9500;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-content .contact-email:hover {
    color: #FF7B00;
}

/* 多语言字体支持 */
[lang="zh-CN"] { font-family: 'Noto Sans SC', sans-serif; }
[lang="zh-TW"] { font-family: 'Noto Sans TC', sans-serif; }
[lang="ja"] { font-family: 'Noto Sans JP', sans-serif; }
[lang="ko"] { font-family: 'Noto Sans KR', sans-serif; }

/* 暗色模式支持 */
@media (prefers-color-scheme: dark) {
    .privacy-content h1 {
        color: #f0f0f0;
    }
    
    .privacy-content h2 {
        color: #e0e0e0;
    }
    
    .privacy-content p {
        color: #ccc;
    }
    
    .privacy-content .last-updated {
        color: #999;
    }
}

/* 响应式设计优化 */
@media (max-width: 768px) {
    .privacy-content {
        padding-top: 60px;
    }
    
    .privacy-content h1 {
        font-size: 1.8em;
    }
    
    .privacy-content h2 {
        font-size: 1.3em;
    }
}

/* 打印样式优化 */
@media print {
    .privacy-content {
        padding-top: 0;
    }
    
    .privacy-content h1 {
        font-size: 24pt;
    }
    
    .privacy-content h2 {
        font-size: 18pt;
        break-after: avoid;
    }
    
    .privacy-content p {
        font-size: 12pt;
    }
    
    .privacy-content .last-updated {
        font-size: 10pt;
    }
} 