/* 隐私政策和条款页面通用样式 */

.policy-container {
    padding: 40px 0;
    min-height: 70vh;
}

.policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
    color: white;
    border-radius: 20px;
}

.policy-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.policy-header p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.policy-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-gray);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.policy-content strong {
    color: var(--primary-color);
    font-weight: bold;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.policy-content a:nth-of-type(1) {
    color: #fff;
}



.update-date {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.highlight-box {
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.highlight-box p {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 36px;
    }

    .policy-header p {
        font-size: 16px;
    }

    .policy-content {
        padding: 25px 20px;
    }

    .policy-content h2 {
        font-size: 24px;
    }

    .policy-content h3 {
        font-size: 20px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 15px;
    }
}