/* 服务条款页面样式 */
.terms-header {
    background: var(--gradient-primary);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.terms-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.8;
}

.terms-content {
    padding: 4rem 0;
    background: white;
}

.terms-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .terms-header {
        padding: 3rem 0;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 2rem 0;
    }

    .terms-section {
        padding: 0 1rem;
    }
} 