/* --- ⚙️ 基本重置和全局样式 (Basic Resets & Global Styles) --- */
:root {
    --primary-color: #FF6B00; /* 橙色 CTA */
    --text-color: #333;
    --light-text-color: #666;
    --bg-gradient-start: #0A2A4D; /* 深蓝 */
    --bg-gradient-end: #00C6FF;   /* 亮青 */
    --section-bg: #f8f9fa;
    --footer-bg: #222;
    --footer-text: #ccc;
    --white: #fff;
    --border-color: #eee;
    --header-height: 70px; /* 定义导航栏高度变量 (可选) */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth; /* 平滑滚动效果 */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
    /* 防止导航栏遮挡锚点 */
    /* padding-top: var(--header-height); */ /* 如果导航栏是 fixed 而不是 sticky，可能需要这个 */
}

body.no-scroll { /* 用于移动菜单打开时禁止背景滚动 */
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-color); /* 默认标题颜色 */
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.4rem; }
p { margin-bottom: 1rem; color: var(--light-text-color); }

a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- 🔘 按钮样式 (Button Styles) --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e05a00; /* 深一点的橙色 */
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

/* --- 🔝 导航栏样式 (Header/Navigation Styles) --- */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky; /* 吸顶效果 */
    top: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height); /* 应用高度 */
    display: flex; /* 垂直居中内容 */
    align-items: center; /* 垂直居中内容 */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* 确保容器撑满 */
}

.logo a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
}
/* .logo img { height: 40px; width: auto; } */ /* 如果用图片 Logo */

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px; /* 导航项间距 */
    align-items: center; /* 垂直居中导航项 */
}

.main-nav a {
    text-decoration: none;
    color: var(--light-text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav li.active a { /* 当前页/悬停样式 */
    color: var(--primary-color);
}

.main-nav a::after { /* 下划线效果 */
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav li.active a::after {
    width: 100%;
}

/* 特殊高亮最后一个菜单项 */
.main-nav a.nav-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.main-nav a.nav-cta:hover {
    background-color: #e05a00;
    color: var(--white);
    text-decoration: none; /* 移除悬停下划线 */
}
.main-nav a.nav-cta::after { /* CTA 按钮不需要下划线 */
    display: none;
}

.mobile-nav-toggle { /* 移动端菜单按钮样式 */
    display: none; /* 默认隐藏 */
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 5px; /* 增加点击区域 */
    line-height: 1; /* 避免额外行高影响布局 */
}

/* --- 🟦 第一屏：Hero (含 Swiper) --- */
.hero-section {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--white);
    padding: 80px 0;
    min-height: calc(80vh - var(--header-height)); /* 减去导航栏高度 */
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    padding-right: 30px; /* 给右侧留出空间 */
}
.hero-text h1 {
    margin-bottom: 15px;
    color: var(--white); /* 确保标题是白色 */
}
.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.hero-visual {
    flex: 1;
    /* min-height: 300px; */ /* 可以移除或保留最小高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* 防止 Swiper 内容溢出 */
    border-radius: 8px; /* 给轮播容器加圆角 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* 给轮播容器加阴影 */
    background-color: #000; /* 添加背景色防止视频加载时透明 */
}

.hero-video-swiper {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    height: auto; /* 高度自动计算 */
}

.hero-video-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Slide 背景色 */
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* 继承容器圆角 */
}

.hero-video-swiper video {
    display: block;
    width: 100%;
    height: 100%; /* 确保视频填满父容器高度 */
    object-fit: cover; /* 覆盖填充，可能裁剪 */
    border-radius: 8px; /* 视频本身圆角 */
}

/* 视频标题样式 (可选) */
.video-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 10;
    opacity: 0; /* 默认隐藏 */
    transition: opacity 0.3s ease;
}
.hero-video-swiper .swiper-slide-active .video-caption {
    opacity: 1; /* 当前活动的 slide 显示标题 */
}


/* 自定义 Swiper 导航按钮颜色 */
.hero-video-swiper .swiper-button-prev,
.hero-video-swiper .swiper-button-next {
    color: var(--primary-color);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.hero-video-swiper:hover .swiper-button-prev,
.hero-video-swiper:hover .swiper-button-next {
     opacity: 1;
}

/* 自定义 Swiper 分页器颜色 */
.hero-video-swiper .swiper-pagination {
    bottom: 15px !important; /* 调整分页器位置 */
}
.hero-video-swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px; /* 增大点击区域 */
    height: 10px;
    transition: background-color 0.3s ease;
}

.hero-video-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}


/* --- 🟨 第二屏：Features --- */
.features-section {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    padding: 25px 20px; /* 增加内边距 */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px auto; /* 增大图标下方间距 */
}
.feature-item h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}
.feature-item p {
    font-size: 0.95rem;
    color: var(--light-text-color);
    margin-bottom: 0;
}

/* --- 🟩 第三屏：Demo --- */
.demo-section {
    background-color: var(--section-bg);
}

.demo-content {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* 顶部对齐 */
    background: var(--white); /* 给整个区域加个背景和圆角 */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.demo-tabs {
    flex-basis: 220px; /* Tab 稍宽一点 */
    flex-shrink: 0;
}

.demo-tabs ul li {
    padding: 15px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    font-weight: 500;
}

.demo-tabs ul li:hover {
    background-color: #f0f0f0;
     transform: translateX(3px); /* 轻微交互效果 */
}

.demo-tabs ul li.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: bold;
     transform: translateX(0); /* 激活时恢复 */
}

.demo-panels {
    flex-grow: 1;
    border-radius: 8px;
    padding: 0px; /* 移除内边距，让图片填充 */
    min-height: 350px; /* 保证面板有一定高度 */
    display: flex;
    justify-content: center;
    align-items: center;
     overflow: hidden; /* 图片超出时隐藏 */
}

.demo-panel {
    display: none; /* JS控制显示 */
    width: 100%;
}

.demo-panel.active {
    display: block; /* JS控制显示 */
    animation: fadeIn 0.5s ease; /* 简单的淡入效果 */
}
.demo-panel img {
    max-width: 100%;
    border-radius: 6px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 🟧 第四屏：Stats --- */
.stats-section {
    background-color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px; /* 增大下方间距 */
}

.stat-item .stat-number {
    font-size: 3.2rem; /* 稍大一点 */
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px; /* 调整间距 */
    line-height: 1.1;
}
.stat-item p {
    font-size: 1rem;
    color: var(--light-text-color);
    margin-bottom: 0;
    font-weight: 500; /* 文本稍粗 */
}

.stats-cta .btn {
    margin-top: 20px;
    font-size: 1.1rem; /* CTA 按钮稍大 */
    padding: 15px 40px;
}

/* --- 🟪 第五屏：Footer --- */
.footer-section {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px 0; /* 增加顶部 padding */
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* 调整列比例 */
    gap: 50px; /* 增大列间距 */
    margin-bottom: 40px; /* 增大底部间距 */
}

.footer-left {
    display: flex;         /* 启用 Flexbox 布局 */
    align-items: center;   /* Logo 和文字垂直居中对齐 */
    gap: 20px;             /* 在 Logo 和文字之间添加 20px 的间距 (可调整) */
}

.footer-left .footer-logo {
    width: 150px;
    /* margin-bottom: 20px; */ /* 移除（或注释掉）原有的下边距 */
    flex-shrink: 0;        /* 防止 Logo 在空间不足时被压缩 */
}

.footer-left p {
    color: var(--footer-text);
    margin-bottom: 0;      /* 确保没有下边距 */
    margin-top: 0;         /* 确保没有上边距，用于精确对齐 */
    line-height: 1.7;
}


.footer-middle h4, .footer-right h4 {
    color: var(--white);
    margin-bottom: 20px; /* 增大标题下方间距 */
    font-size: 1.1rem;
    font-weight: 600; /* 标题加粗 */
}

/* --- ❗❗❗ 修改区域：.footer-middle ul 开始 ❗❗❗ --- */
.footer-middle ul {
    list-style: none; /* 确保没有列表点 */
    padding: 0;       /* 移除默认内边距 */
    margin: 0;        /* 移除默认外边距 */

    /* 应用 Grid 布局 */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 创建两个等宽的列 */
    /* 设置列间距 (水平间距，垂直间距由 li 的 margin-bottom 控制) */
    /* 如果想用 gap 控制行间距，需要移除 li 的 margin-bottom */
    /* gap: 12px 20px; */
    column-gap: 20px; /* 只设置列间距 */
}
/* --- ❗❗❗ 修改区域：.footer-middle ul 结束 ❗❗❗ --- */


/* li 的样式保持不变，它的 margin-bottom 提供了行间距 */
.footer-middle ul li {
    margin-bottom: 12px;
}

.footer-middle ul li a {
    color: var(--footer-text);
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-middle ul li a:hover {
    color: var(--white);
    text-decoration: none;
    padding-left: 5px; /* 悬停时轻微移动 */
}

.footer-right .footer-qr {
    width: 220px; /* 稍大一点的二维码 */
    height: auto; /* 确保高度自动适应 */
    margin-bottom: 15px;
    border-radius: 4px; /* 轻微圆角 */
}
.footer-right p {
    color: var(--footer-text);
    margin-bottom: 8px; /* 调整行间距 */
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 25px; /* 增加顶部 padding */
    margin-top: 30px; /* 与上方内容间距 */
    font-size: 0.85rem;
    color: #aaa;
}
.footer-bottom a {
    color: #aaa;
    transition: color 0.3s ease;
}
.footer-bottom a:hover {
    color: var(--white);
}


/* --- 📱 移动端悬浮 CTA --- */
.mobile-cta-fixed {
    display: none; /* 默认隐藏 */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98); /* 更不透明 */
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999; /* 比导航栏低一点 */
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.mobile-cta-fixed .btn {
    width: 80%;
    max-width: 300px;
}


/* --- 📐 响应式布局 (Responsive Layout) --- */

/* 中等屏幕 (平板) */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.9rem; }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px; /* 增大间距 */
        order: 2; /* 文字在下方 */
    }
    .hero-visual {
        order: 1; /* 视频在上方 */
        width: 100%; /* 占满宽度 */
        max-width: 600px; /* 可以限制最大宽度，避免过宽 */
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 两列 */
    }
     .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 两列 */
        gap: 25px; /* 调整间距 */
    }

    .demo-content {
        flex-direction: column; /* Tab和内容上下堆叠 */
        gap: 30px;
        padding: 20px;
    }
    .demo-tabs {
        flex-basis: auto;
        width: 100%;
    }
     .demo-tabs ul {
        display: flex; /* 横向排列 Tab */
        justify-content: center; /* 居中 */
        flex-wrap: wrap; /* 换行 */
        gap: 10px;
    }
    .demo-tabs ul li { margin-bottom: 0; } /* 移除底部 margin */

    .footer-container {
        grid-template-columns: 1fr; /* 底部堆叠 */
        text-align: center;
        gap: 30px; /* 调整堆叠间距 */
    }
    .footer-left .footer-logo, .footer-right .footer-qr {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-middle, .footer-right {
        margin-top: 10px; /* 调整堆叠间距 */
    }

    /* 中等屏幕下，可以让导航列表恢复单列或保持两列 */
    /* 这里保持两列，如果想改回单列，添加下面的代码 */
    /*
    .footer-middle ul {
        display: block; / * 取消 grid 布局 * /
    }
    */
}

/* 小型屏幕 (手机) */
@media (max-width: 768px) {
    :root { --header-height: 60px; } /* 手机导航栏稍矮 */
    body { /* padding-top: var(--header-height); */ } /* 可能需要调整 */
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.7rem; }
    section { padding: 40px 0; }

    .main-header { height: var(--header-height); }

    .main-nav {
        display: none; /* 隐藏电脑版导航 */
        position: absolute;
        top: var(--header-height); /* 定位在导航栏下方 */
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 15px 0; /* 内边距 */
        z-index: 999; /* 确保在内容之上 */
        max-height: calc(100vh - var(--header-height)); /* 防止菜单过长 */
        overflow-y: auto; /* 菜单过长时可滚动 */
    }
    .main-nav.is-active {
        display: block; /* 点击按钮后显示 */
    }
    .main-nav ul {
        flex-direction: column; /* 垂直排列 */
        align-items: center; /* 居中对齐 */
        gap: 0; /* 移除 gap */
    }
    .main-nav ul li {
        width: 100%; /* 占满宽度 */
        text-align: center;
    }
    .main-nav ul li a {
        display: block; /* 让链接充满 li */
        padding: 12px 20px; /* 增加点击区域 */
        border-bottom: 1px solid var(--border-color); /* 添加分隔线 */
        width: 100%;
    }
     .main-nav ul li:last-child a {
         border-bottom: none; /* 最后一个移除边框 */
     }
    .main-nav a::after { display: none; } /* 手机端移除下划线效果 */
    .main-nav a.nav-cta {
        margin-top: 10px; /* 与上方链接间距 */
        display: inline-block; /* 恢复内联块 */
        width: auto; /* 恢复自动宽度 */
        padding: 10px 25px; /* 调整 padding */
    }


    .mobile-nav-toggle {
        display: block; /* 显示汉堡按钮 */
    }


    .hero-section { padding: 50px 0; min-height: auto; }

    .features-grid {
        grid-template-columns: 1fr; /* 单列 */
        gap: 20px;
    }
    .feature-item { margin-bottom: 0; } /* 移除多余间距 */

    .demo-tabs ul {}
    .demo-panels { min-height: 280px; }


     .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 手机上保持两列可能更好 */
        gap: 20px;
    }
     .stat-item .stat-number { font-size: 2.2rem; } /* 调整数字大小 */


    /* 显示移动端悬浮按钮 */
    .mobile-cta-fixed {
        display: block;
    }

    .footer-section { padding-top: 40px; }
    .footer-container { gap: 25px; }

    /* 在小屏幕上，将导航列表改回单列 */
    .footer-middle ul {
        display: block; /* 取消 Grid 布局 */
        grid-template-columns: none; /* 重置列设置 */
        column-gap: 0; /* 重置列间距 */
    }


    /* 在小屏幕上，如果希望 logo 和文本堆叠而不是并排 */
    .footer-left {
        flex-direction: column;  /* 改为垂直堆叠 */
        align-items: center;    /* 居中对齐 */
        text-align: center;     /* 文本也居中 */
        gap: 15px;             /* 调整垂直间距 */
    }
    /* .footer-left .footer-logo { */
        /* margin-bottom: 0; */ /* 确保没有额外的 margin (可选) */
    /* } */

}

/* 更小屏幕 */
@media (max-width: 576px) {
     h1 { font-size: 1.9rem; }

     .stats-grid {
        grid-template-columns: 1fr; /* 小屏幕下单列 */
        gap: 25px;
    }
     .stat-item .stat-number { font-size: 2rem; }
     .stats-cta .btn { font-size: 1rem; padding: 12px 30px; }

     .footer-left p { font-size: 0.85rem; } /* 调整底部字体 */

     /* 在更小屏幕上通常保持手机端的单列布局，无需额外调整 .footer-middle ul */
}

/* --- 📜 隐私政策页面样式 (Privacy Policy Page Styles) --- */

.privacy-policy-page main {
    /* 可以给主内容区域一个稍微不同的背景色以区分，或者保持白色 */
    background-color: var(--white); /* 或者 var(--section-bg) */
    padding: 60px 0; /* 上下内边距 */
}

.privacy-content-section h1 {
    text-align: center;
    font-size: 2.5rem; /* 调整标题大小 */
    margin-bottom: 15px;
    color: var(--text-color); /* 确保标题颜色 */
}

.effective-date {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-text-color);
    margin-bottom: 50px; /* 增大与正文的间距 */
}

.privacy-content-section section {
    margin-bottom: 45px; /* 每个大章节之间的间距 */
}

.privacy-content-section h2 {
    font-size: 1.8rem; /* 二级标题大小 */
    color: var(--text-color);
    margin-bottom: 25px; /* 标题下间距 */
    padding-bottom: 10px; /* 标题下留白 */
    border-bottom: 2px solid var(--primary-color); /* 标题下划线，使用主色调 */
    text-align: left; /* 标题左对齐 */
}

.privacy-content-section h3 {
    font-size: 1.3rem; /* 三级标题大小 */
    color: #444; /* 稍深的灰色 */
    margin-top: 30px;  /* 与上方内容间距 */
    margin-bottom: 15px; /* 与下方内容间距 */
    font-weight: 600;
    text-align: left; /* 标题左对齐 */
}

.privacy-content-section p {
    font-size: 1rem; /* 正文字体大小 */
    line-height: 1.8; /* 更大的行高，易于阅读 */
    color: var(--light-text-color);
    margin-bottom: 15px; /* 段落下间距 */
    text-align: justify; /* (可选) 两端对齐，如果喜欢的话 */
}

.privacy-content-section ul {
    list-style: none; /* 移除默认列表点 */
    padding-left: 0; /* 移除默认内边距 */
    margin-bottom: 20px; /* 列表下方间距 */
}

.privacy-content-section li {
    color: var(--light-text-color);
    line-height: 1.8;
    margin-bottom: 12px; /* 列表项之间的间距 */
    padding-left: 25px; /* 左侧留出空间给自定义点 */
    position: relative; /* 用于自定义点定位 */
}

/* 自定义列表点样式 */
.privacy-content-section li::before {
    content: ''; /* 使用空内容 */
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color); /* 使用主色调 */
    border-radius: 50%; /* 圆点 */
    position: absolute;
    left: 5px; /* 控制点的位置 */
    top: 0.6em; /* 垂直居中对齐 (可能需要微调) */
}

/* 加粗列表项中的重点词 */
.privacy-content-section li strong {
    color: var(--text-color); /* 重点词颜色加深 */
    font-weight: 600;
}

/* 提示部分的特殊样式 */
#appendix h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 25px;
    border-bottom: none; /* 移除提示标题的下划线 */
    padding-bottom: 0;
}

/* 响应式调整 (可选，如果需要的话) */
@media (max-width: 768px) {
    .privacy-content-section h1 {
        font-size: 2rem;
    }
    .privacy-content-section h2 {
        font-size: 1.5rem;
    }
    .privacy-content-section h3 {
        font-size: 1.2rem;
    }
    .privacy-content-section p,
    .privacy-content-section li {
        font-size: 0.95rem;
    }
}