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

.max-width-800 {
    max-width: 800px;
}

.terms-section {
    position: relative;
}

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

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

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

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