/* 法律文档页面样式 */
.legal-content {
    padding: 120px 0 60px;
    background: white;
    min-height: 100vh;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-color);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 40px;
    }

    .legal-content h1 {
        font-size: 30px;
    }

    .legal-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 90px 0 30px;
    }

    .legal-content h1 {
        font-size: 26px;
    }

    .legal-section h2 {
        font-size: 18px;
    }
} 