/* 隐私政策页面专用样式 */

.privacy-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.privacy-hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.privacy-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.privacy-content {
    padding: 80px 0;
    background-color: #fafafa;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.policy-section h2 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding: 10px 0;
    color: #4a5568;
    line-height: 1.6;
    border-bottom: 1px solid #f7fafc;
}

.policy-list li:before {
    content: "✗";
    color: #e53e3e;
    font-weight: bold;
    margin-right: 10px;
}

.policy-list li strong {
    color: #2d3748;
}

.highlight-box {
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.highlight-content h3 {
    color: #2b6cb0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-content p {
    color: #2a4365;
    margin: 0;
    line-height: 1.6;
}

.contact-info {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4a5568;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-item a {
    color: #007AFF;
    text-decoration: none;
}

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

.version-info {
    background: #f7fafc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    color: #2d3748;
}

.policy-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.policy-summary {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.policy-summary h3 {
    color: #22543d;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.policy-summary p {
    color: #2f855a;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .privacy-text {
        padding: 25px;
        margin: 0 15px;
    }
    
    .privacy-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .section-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 40px 0;
    }
    
    .privacy-text {
        padding: 20px;
        margin: 0 10px;
    }
    
    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
} 