/* 使用条款页面样式 */

.terms-hero {
    background-color: #f5f7fa;
    padding: 80px 0;
    text-align: center;
}

.terms-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a237e;
}

.terms-hero-content .subtitle {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.terms-content {
    padding: 60px 0;
    background-color: #fff;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-section {
    margin-bottom: 40px;
    line-height: 1.6;
}

.terms-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.terms-section p {
    margin-bottom: 15px;
    color: #37474f;
}

.terms-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
    color: #37474f;
}

.terms-section .last-updated {
    font-style: italic;
    color: #78909c;
    margin-bottom: 20px;
}

.terms-section strong {
    color: #0d47a1;
    font-weight: 600;
}

.contact-info {
    background-color: #f5f7fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 0;
}

.contact-info a {
    color: #1565c0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.terms-cta {
    background-color: #f5f7fa;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}

.cta-content p {
    color: #546e7a;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a237e;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0d1b69;
}

.btn-secondary {
    background-color: transparent;
    color: #1a237e;
    border: 1px solid #1a237e;
}

.btn-secondary:hover {
    background-color: rgba(26, 35, 126, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .terms-hero {
        padding: 60px 0;
    }
    
    .terms-hero-content h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .terms-hero {
        padding: 40px 0;
    }
    
    .terms-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .terms-hero-content .subtitle {
        font-size: 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
}
