
    /* CSS 变量定义 */
    :root {
        --section-bg: #f5f5f5; /* 整个版块的背景色 */
        --text-color-primary: #2c3e50; /* 主标题和特性的标题颜色 */
        --text-color-secondary: #7f8c8d; /* 正文颜色 */
        --icon-size: 60px; /* 图标的尺寸 (注意：实际尺寸现在由 .feature-icon-img 控制) */
    }

    /* 整体版块容器样式 */
    .partner-section {
        background-color: var(--section-bg);
        padding: 30px 20px;
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        text-align: center; /* 保持主标题居中 */
    }

    /* 主标题样式 (标题已在 HTML 中内联样式，这里只保留主样式) */
    .section-title {
        margin-bottom: 50px;
    }

    /* 特性网格容器 */
    .features-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    /* 单个特性容器 */
    .feature-item {
        flex: 1;
        text-align: left; /* 标题和描述左对齐 */
    }

    /* 图标图片样式 */
    .feature-icon-img {
        max-width: 50px; /* <-- 关键修改：图标缩小到 80% (原 100px * 0.8 = 80px) */
        height: auto;
        margin-bottom: 20px;
        display: block;
        /* margin-left: auto; <-- 移除居中 */
        /* margin-right: auto; <-- 移除居中 */
        margin-left: 0; /* <-- 关键修改：确保图标左对齐 */
        margin-right: auto; /* 保留 auto 或设置为 0 都可以，因为 display: block 和 left: 0 已确定位置 */
    }

    /* 特性标题样式 */
    .feature-title {
        font-size: 18px;
        font-weight: bold;
        color: var(--text-color-primary);
        margin-bottom: 10px;
        line-height: 1.4;
        text-align: left; /* 确保小标题左对齐 */
    }

    /* 特性描述样式 */
    .feature-description {
        font-size: 14px;
        color: var(--text-color-secondary);
        line-height: 1.6;
        text-align: left; /* 文本左对齐 */
    }

    /* 响应式调整 */
    @media (max-width: 1024px) {
        .features-grid {
            flex-wrap: wrap;
            justify-content: space-around;
        }
        .feature-item {
            flex: 0 0 calc(50% - 15px);
            margin-bottom: 30px;
            text-align: left;
        }
        .feature-icon-img {
            margin-left: 0; /* 确保小屏幕上图标也左对齐 */
        }
        .feature-description {
            text-align: left;
        }
    }
