/* ==========================================
   隐私政策页面样式
   ========================================== */

/* 英雄区域 */
.vm-privacy-hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
    text-align: center;
}

.vm-privacy-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.vm-privacy-hero .container {
    position: relative;
    z-index: 1;
}

.vm-privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.vm-privacy-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.vm-privacy-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.vm-privacy-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 目录导航 */
.vm-privacy-toc {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.vm-toc-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.vm-toc-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.vm-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vm-toc-list li a {
    display: block;
    padding: 12px 20px;
    background: white;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 15px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.vm-toc-list li a:hover {
    border-left-color: var(--primary-color);
    background: #fff;
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

/* 隐私政策内容 */
.vm-privacy-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.vm-privacy-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.vm-privacy-main {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.privacy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.privacy-section p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.privacy-section ul li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.privacy-section ul li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* 联系信息盒子 */
.contact-info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* 侧边栏 */
.vm-privacy-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.sidebar-sticky {
    /* 移除 sticky 定位，不再需要 */
}

.sidebar-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.sidebar-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sidebar-tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-tips li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.sidebar-tips li:last-child {
    margin-bottom: 0;
}

.tip-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.sidebar-tips p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.sidebar-cta h3 {
    color: white;
}

.sidebar-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: white;
    color: var(--primary-color);
    text-align: center;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   响应式设计
   ========================================== */

@media (max-width: 1024px) {
    .vm-privacy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vm-privacy-sidebar {
        position: relative;
        top: auto;
    }
    
    .vm-toc-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vm-privacy-hero {
        padding: 80px 0 60px;
    }
    
    .vm-privacy-hero-title {
        font-size: 36px;
    }
    
    .vm-privacy-hero-subtitle {
        font-size: 18px;
    }
    
    .vm-privacy-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .vm-privacy-content {
        padding: 60px 0;
    }
    
    .vm-privacy-main {
        padding: 30px 25px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 15px;
    }
    
    .sidebar-box {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .vm-privacy-hero-title {
        font-size: 28px;
    }
    
    .vm-privacy-hero-subtitle {
        font-size: 16px;
    }
    
    .vm-privacy-main {
        padding: 25px 20px;
    }
    
    .privacy-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
}
