/* 自定义样式 */
.privacy-page {
    margin-top: 100px;
    color: #333;
}

.privacy-section {
    position: relative;
}

.content-block {
    transition: all 0.3s ease;
}

.privacy-section:hover .content-block {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 响应式调整 */
@media (max-width: 991.98px) {
    .privacy-section {
        padding-top: 1rem;
    }
}