/* 隐私政策和服务条款页面专用样式 */

.legal-page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.legal-page-header .last-updated {
    color: #6b7280;
    font-size: 1rem;
}

.legal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.legal-content strong {
    color: #1f2937;
    font-weight: 600;
}

.legal-content a {
    color: #667eea;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #764ba2;
}

.legal-toc {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.legal-toc h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.legal-toc ul {
    list-style: none;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 0.75rem;
}

.legal-toc a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-toc a:hover {
    color: #667eea;
}

.legal-highlight {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.legal-highlight p {
    margin-bottom: 0;
}

.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.contact-section h2 {
    color: #fff;
    border: none;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.contact-section a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.25rem;
    }
}
