
        /* 全局重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* 全屏背景容器 - 仅本条产品背景全屏 */
        .customer-success-section {
            width: 100%;
            background-color: #f8f9fa; /* 浅灰底色，匹配原图视觉 */
            padding: 60px 20px;
            margin: 0 auto;
        }

        /* 标题样式 */
        .section-title {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            color: #0a1c34;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #007bff; /* 下划线蓝色，匹配原图 */
        }

        /* 卡片容器 - 响应式4列布局 */
        .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px; /* 卡片间距 */
            max-width: 1200px; /* 限制最大宽度，适配PC端 */
            margin: 0 auto;
        }

        /* 单个卡片样式 */
        .success-card {
            flex: 1;
            min-width: 250px; /* 移动端最小宽度，保证适配 */
            max-width: 280px; /* PC端单卡片最大宽度 */
            background-color: #ffffff;
            padding: 30px 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 轻微阴影提升质感 */
        }

        /* 图标样式 */
        .card-icon {
            font-size: 36px;
            color: #0a1c34;
            margin-bottom: 20px;
        }

        /* 卡片标题 */
        .card-title {
            font-size: 18px;
            font-weight: 600;
            color: #0a1c34;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        /* 卡片描述 */
        .card-desc {
            font-size: 14px;
            color: #666666;
            line-height: 1.6;
        }

        /* 响应式适配 - 平板端（768px以下） */
        @media (max-width: 768px) {
            .cards-container {
                gap: 20px;
            }
            .success-card {
                max-width: 45%; /* 平板端2列 */
            }
            .section-title {
                font-size: 24px;
            }
        }

        /* 响应式适配 - 手机端（480px以下） */
        @media (max-width: 480px) {
            .success-card {
                max-width: 100%; /* 手机端1列 */
            }
            .section-title {
                font-size: 22px;
            }
            .customer-success-section {
                padding: 40px 15px;
            }
        }
    