
/* 主容器 */
.kimone-privacy-policy {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    background: transparent;
}

/* 头部样式 */
.privacy-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
    position: relative;
}

.privacy-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #2a6e3f, #4CAF50);
    border-radius: 3px;
}

.privacy-logo {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2a6e3f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: #4CAF50;
    font-size: 3.2rem;
    filter: drop-shadow(0 2px 4px rgba(42, 110, 63, 0.2));
}

.privacy-title {
    color: #1a4b2a;
    font-size: 2.5rem;
    margin: 20px 0 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #1a4b2a, #2a6e3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-date {
    color: #718096;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    color: #2a6e3f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.privacy-badge i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* 重要通知 */
.privacy-notice {
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border-left: 4px solid #ffc107;
    padding: 24px;
    margin: 30px 0 40px;
    border-radius: 0 12px 12px 0;
    color: #664d03;
    font-size: 1.05rem;
    line-height: 1.6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 章节样式 */
.privacy-section {
    margin: 50px 0;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.privacy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
    color: #2a6e3f;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f5e9;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2a6e3f, #4CAF50);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
}

.privacy-section p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 列表样式 */
.privacy-list {
    margin: 25px 0 0 20px;
    list-style: none;
}

.privacy-list li {
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    transform: translateY(-50%);
}

.privacy-list li strong {
    color: #2a6e3f;
    font-weight: 600;
}

/* 合规框 */
.compliance-box {
    background: linear-gradient(135deg, #f0f9f0, #e8f5e8);
    border-left: 4px solid #4CAF50;
    padding: 25px;
    margin: 25px 0 0;
    border-radius: 0 12px 12px 0;
    color: #2a6e3f;
}

.compliance-box p {
    margin-bottom: 15px;
    color: #2a6e3f;
}

.compliance-box strong {
    color: #1a4b2a;
}

/* 联系区域 */
.privacy-contact {
    background: linear-gradient(135deg, #1a4b2a, #2a6e3f);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(26, 75, 42, 0.3);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.email-btn {
    background: white;
    color: #2a6e3f;
    border: 2px solid white;
}

.email-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.form-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-btn:hover {
    background: white;
    color: #2a6e3f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.contact-btn i {
    font-size: 1.2rem;
}

/* 页脚 */
.privacy-footer {
    text-align: center;
    padding: 40px 0 20px;
    color: #718096;
    font-size: 0.95rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
}

.copyright {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.description {
    margin-bottom: 10px;
    line-height: 1.6;
}

.update-info {
    font-style: italic;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .kimone-privacy-policy {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .privacy-logo {
        font-size: 2rem;
        gap: 10px;
    }
    
    .logo-icon {
        font-size: 2.2rem;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 20px;
        margin: 30px 0;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .section-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .privacy-contact {
        padding: 30px 20px;
        margin: 40px 0 30px;
    }
    
    .contact-btn {
        min-width: 100%;
        padding: 14px 24px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .privacy-list {
        margin-left: 15px;
    }
    
    .privacy-list li {
        padding-left: 25px;
    }
}

/* 打印样式 */
@media print {
    .kimone-privacy-policy {
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
    
    .privacy-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .privacy-contact {
        background: #f5f5f5 !important;
        color: #333 !important;
    }
    
    .contact-btn {
        border: 1px solid #333 !important;
        color: #333 !important;
    }
}
