/* 隐私政策页面样式 */
.privacy-content {
    min-height: calc(100vh - 60px - 200px);
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.privacy-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.privacy-section h1 {
    color: #333;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.privacy-text h2 {
    color: #333;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1rem;
    }

    .privacy-section {
        padding: 1.5rem;
    }

    .privacy-section h1 {
        font-size: 2rem;
    }

    .privacy-text {
        font-size: 1rem;
    }

    .privacy-text h2 {
        font-size: 1.5rem;
    }
} 