/* 隐私政策和用户协议页面样式 */
.page-content {
    padding: 120px 20px 80px;
    min-height: calc(100vh - 200px);
    background: white;
}

.page-content h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center;
}

.update-date {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 0.95rem;
}

.policy-section {
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.policy-section ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

.policy-section li {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-light);
}

.policy-section li strong {
    color: var(--text-color);
}

/* 动画效果 */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* 导航栏滚动效果 */
.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

/* 移动端导航菜单展开 */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 15px;
}

