/* 隐私政策页面样式 - Global Currency Converter */

/* 页面导航 */
.page-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    background: #1a73e8;
    color: white;
    border-bottom: 1px solid #0d62d9;
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.nav-back {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-back:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-title-section {
    text-align: center;
    margin-bottom: 0;
}

.page-nav h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.header-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

/* 页面内容 */
.page-content {
    padding: 40px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-content {
    line-height: 1.8;
    color: #333;
}

/* 最后更新 */
.last-updated {
    background: #e7f3ff;
    border-left: 4px solid #1a73e8;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
}

/* 政策部分 */
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: #1a73e8;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-section h3 {
    color: #2c3e50;
    font-size: 18px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
}

.policy-section li:before {
    content: "•";
    color: #1a73e8;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* 联系信息 */
.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-info strong {
    color: #1a73e8;
}

/* 重要提示 */
.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    color: #856404;
    font-size: 14px;
}

.important-note strong {
    color: #856404;
}

/* 页脚 */
.page-footer {
    background: #f8f9fa;
    padding: 25px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

.footer-content p {
    margin-bottom: 10px;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .page-content {
        padding: 20px 15px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
    
    .policy-section p {
        font-size: 15px;
    }
    
    .policy-section ul {
        padding-left: 20px;
    }
    
    .last-updated {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .contact-info {
        padding: 15px;
    }
}

/* 打印样式 */
@media print {
    .page-nav,
    .page-footer {
        display: none;
    }
    
    .page-content {
        padding: 0;
        max-width: none;
    }
    
    .privacy-content {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    .policy-section h2 {
        page-break-after: avoid;
    }
    
    .policy-section {
        page-break-inside: avoid;
    }
}