/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding: 20px;
}

/* 隐私政策容器 */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 头部样式 */
.privacy-header {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    padding: 30px;
    text-align: center;
}

.privacy-header .logo h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.privacy-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.last-updated {
    font-size: 14px;
    opacity: 0.8;
}

/* 内容区域 */
.privacy-content {
    padding: 0;
}

.intro-section {
    padding: 25px 30px 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
}

.intro-section p {
    font-size: 16px;
    color: #555;
}

/* 可滚动内容区域 */
.scrollable-content {
    max-height: 600px;
    overflow-y: auto;
    padding: 0 30px;
    border-bottom: 1px solid #eaeaea;
}

/* 隐私政策部分样式 */
.privacy-section {
    margin: 25px 0;
}

.privacy-section h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
}

.subsection {
    margin: 15px 0 20px 15px;
}

.subsection h4 {
    color: #3498db;
    font-size: 16px;
    margin-bottom: 10px;
}

.privacy-section p, .privacy-section li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    text-align: justify;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-section li {
    margin-bottom: 8px;
}

/* 强调样式 */
strong {
    color: #2c3e50;
    font-weight: 600;
}

/* 联系信息样式 */
.contact-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.contact-info p {
    margin-bottom: 0;
}

/* 操作区域 */
.privacy-actions {
    padding: 25px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.notice {
    font-size: 15px;
    color: #555;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .privacy-header {
        padding: 20px;
    }
    
    .privacy-header .logo h1 {
        font-size: 22px;
    }
    
    .privacy-header h2 {
        font-size: 20px;
    }
    
    .scrollable-content, 
    .intro-section,
    .privacy-actions {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
}

/* 滚动条样式 */
.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 重要部分强调 */
.subsection:nth-child(2) {
    border-left: 3px solid #e74c3c;
    padding-left: 15px;
    margin-left: -15px;
}

.subsection:nth-child(2) h4 {
    color: #e74c3c;
}