/* 隐私政策页面样式 */
.policy-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.policy-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.policy-section h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    color: #777;
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
}

.policy-content {
    line-height: 1.8;
}

.policy-content h2 {
    color: #0a6e31;
    font-size: 1.8rem;
    margin: 30px 0 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.policy-content p {
    margin-bottom: 15px;
    color: #444;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

.policy-content strong {
    color: #0a6e31;
}

@media (max-width: 768px) {
    .policy-container {
        margin: 100px auto 40px;
    }
    
    .policy-section {
        padding: 25px;
    }
    
    .policy-section h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
}