/* 隐私政策页面样式 */

.privacy-header {
    background-color: #16213e;
    padding: 60px 0;
    text-align: center;
}

.privacy-header h1 {
    font-size: 2.8rem;
    color: #4cc9f0;
    margin-bottom: 15px;
}

.privacy-header p {
    font-size: 1.2rem;
    color: #b0b0c0;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    color: #4cc9f0;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #4361ee;
}

.privacy-section {
    background-color: #16213e;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}

.privacy-text {
    color: #e2e2e2;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.privacy-text:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    margin: 20px 0 30px 0;
}

.privacy-list li {
    color: #e2e2e2;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4cc9f0;
    font-size: 1.5rem;
    line-height: 1;
}

.subsection-title {
    font-size: 1.4rem;
    color: #4cc9f0;
    margin: 35px 0 20px 0;
}

.highlight-box {
    background-color: #1a1a2e;
    border-left: 4px solid #4361ee;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
}

.highlight-box p {
    color: #e2e2e2;
    margin: 0;
    line-height: 1.6;
}

.key-point {
    font-weight: 500;
    color: #4cc9f0;
}

.last-updated {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a42;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .privacy-header {
        padding: 40px 0;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .privacy-content {
        padding: 40px 0;
    }
    
    .privacy-section {
        padding: 30px 20px;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
}
